Forum Moderators: not2easy
I have
div.content and I want all p, h1, h2, h3 in it (and only them) to have a left margin of 300px. Up until now I thought this could be achieved through
div.content h1, h2, h3, p {
margin-left: 300px;
}
But it only works for H1 and not for the rest. Any idea how I could solve the problem? If I remove the commas again it doesn't work.
Thanks.