Im trying to give some margin-top to my .links li a
, but its not working, I give this margin but the links stay also without margin.
Do you see why this can be happening?
Here I have my problem:
My html:
<div id="content">
<h2>Title</h2>
<span id="date">22/05/2014</span> <br />
<img class="img" src="../image1.jpg"/>
<p>
Paragraph text
</p>
<div id="downloads">
<h3>Links:</h3>
<ul class="links">
<li><a href="">Link bigger</a></li>
<li><a href="">Link</a></li>
<li><a href="">Link 3</a></li>
</ul>
</div>
<span class="back">Back</span>
</div>
My css:
.links li a
{
text-decoration:none;
background:red;
color:#000;
margin-top:20px;
margin:0 auto;
}