CSS Text-overflow: Ellipsis, Clip, String [Tiga titik di Akhir Teks]
div.test1 {border: 1px solid #000000;width:200px;background-color:#F1F1F1}
div.test2 {border: 1px solid #000000;width:200px;white-space: nowrap;background-color:#F1F1F1}
div.test3 {border: 1px solid #000000;white-space: nowrap;overflow: hidden;width:200px;background-color:#F1F1F1}
div.ellipsis {text-overflow: ellipsis;}
div.clip {text-overflow: clip;}
div.string {text-overflow: "...Next";}
Post a Comment