멀티라인 말줄임

WEB/HTML & CSS 2015. 2. 11. 20:05

http://blog.mckwon.com/425

http://alwaystwenties.tistory.com/134

 

 

ul.circle {list-style-type: circle;}
ul.square {list-style-type: square;}
ol.upper-roman {list-style-type: upper-roman;}
ol.lower-alpha {list-style-type: lower-alpha;}

 

li{list-style: square inside;} 로 해결.

 

예제

http://www.w3schools.com/cssref/pr_list-style-type.asp

http://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_style_textoverflow

 

document.getElementById("myDIV").style.textOverflow = "ellipsis";

object.style.textOverflow="clip|ellipsis|string|initial|inherit"