So i have some threaded comments as such:
<div id="container">
<ol>
<li>First</li>
<li>Second comment
<ol>
<li>First reply to second comment</li>
</ol>
</li>
</ol>
</div>
The container has a fixed width, but I do not know which width (the system can be used across multiple sites)
I want the width of the comments to fully fill the container. However with each level the ol goes deeper I want to have a margin of 30px on the left.
Problem is that if you specify it as such the width of the comment stays at 100% and just moves 30px out of the container.
How should i specify my css to get what i want?








Bookmarks