
This is really simple, but I wanted to just add it more as a companion post to CSS Tables (1) because it was used in the same webpage. This little box has a dashed border just to differentiate it from the main table that has the listings. The box has the same background color and border color, however the dashed effect and the bolded text just set it a little out so that the user recognizes its a unique message.
Here is the css:
#listingsMessage {
border:1px dashed #650b0b;
width:625px;
padding:10px;
color:#373b44;
font-weight:bold;
font-size:13px;
}
Here is the html:
<div id="listingsMessage">
-- text --
</div>
No comments:
Post a Comment