When using chrome's "inspect element" tool, I noticed a padding-left:40px
coming from the "user agent stylesheet". I am looking for a way to remove this specific styling without affecting the rest of my web layout
code: http://jsfiddle.net/FranLegon/kvhu2vg4/ img: https://i.sstatic.net/uMvKC.png
<!DOCTYPE html>
<html>
<head>
<style>li {list-style-type:none; padding:0; margin:0;} </style>
</head>
<body>
<ul>
<li>aaaaa</li>
<li>bbbbb</li>
<li>ccccc</li>
<li>ddddd</li>
<li>eeeee</li>
</ul>
</body>
</html>