Css Add a Line Above

fredericdietrich By On 05/12/2018

In HTML

Add a line with css above an html element

 

salut Fred

html
 
 
css
 

When the text is too long and goes outside the div or span, add this : white-space: normal;

 

ul li in line



<ul style="display:inline; list-style: none;">
          <li  style="display:inline;"><div style="background-color: #FF0000;width: 8px;height: 8px;">&nbsp;</div></li>
          <li style="display:inline;">plop</li>
          <li style="display:inline;">plop</li>
          <li style="display:inline;">plop</li>
        </ul>
 display: inline; list-style: none;
 

css

  • No ratings yet - be the first to rate this.