Removing ul indentation with CSS
-webkit-padding-start: 0;
will remove padding added by webkit engine
This code will remove the indentation and list bullets.
ul {
padding: 0;
list-style-type: none;
}
http://jsfiddle.net/qeqtK/2/
To maintain the bullets you can replace the list-style: none with list-style-position: inside or the shorthand list-style: inside:
ul {
list-style-position: inside;
padding-left: 0;
}
ul {
list-style-position: inside;
padding-left: 0;
}
<ul>
<li>Milk</li>
<li>Cheese
<ul>
<li>Blue cheese</li>
<li>Feta</li>
</ul>
</li>
</ul>