Read what "LadynRed" had posted earlier;
Quote:
|
Your CSS doesn't coincide with the HTML you posted. Either give us a link or post ALL of the html and css.
|
If you could do us a favor please post a link/codes and what exactly you trying to achieve. For e.g. border for which element?
As the css you posted,
Code:
soild {
border-style:solid;
width:879px;
height:500px;
border-width:10px;
}
solid is not html element. if you would like to use it as a identifier then it can be either id or class and prefixed with #(for id) or . (for class) and in the html you should be calling the styles through the identifier; something like this should be on place
Code:
<div id="solid">Some demo text </div>
and the css would be
Code:
#soild {
border:solid 10px #ccc;
width:879px;
height:500px;
}
Last edited by radiant_luv; 11-09-2010 at 03:57 AM..
|