I'm a duck out of water when it comes to CSS and I profess no background in it, and openly admit generally I'm wading in the deep.
I'm a bit confused why the below code isn't working, whether its my lack of understanding or if what I'm trying to do is impossible I don't know..
Basic code... there's more 'meat' the the css class' but you'll get the gist..
Code:
CSS:
div.xdiv
{
margin-left: 450px;
}
div.zdiv
{
margin-left: 460px;
font-family:"Times New Roman", Times, serif;
}
HTML section:
Code:
<div class="xdiv"><img src="angry.gif" alt="Angry face" /></div>
<div class="zdiv">Some text goes here</div>
What ever I have tried the second div class never ever works.
I've tried inspecting it via chrome but chrome doesn't see the linked CSS.
I'm at a loss!
Any education would be appreciated.