I have two html code snippets:
#header {
text-align: center;
font-size: 14px;
font-family: "Gill Sans MT";
margin-top: 30px;
}
#123 {
text-align: center;
font-size: 14px;
font-family: "Gill Sans MT";
margin-top: 30px;
}
<div id="header">
<!-- *** Section 1 *** --->
<h3>Time series of applications to 'Research Grants (Open Call)' for this Financial Year<br> and the previous three with 'Bollinger Bands'.</h3><br>
</div>
<div id="123">
<!-- *** Section 1 *** --->
<h3>Time series of applications to 'Research Grants (Open Call)' for this Financial Year<br> and the previous three with 'Bollinger Bands'.</h3><br>
</div>
Exactly the same content, but with different IDs.
Now, only the header
ID works, the 123
doesnt.... and if I put the 123
css ABOVE the header
css, none of them work.
Can someone explain what is happening, cos I am stumped!