I’m trying to edit a css div to display 100% text on it,
My code is:
#categorycontent, .categorycontent {
display:block;
line-height:22px;
height:290px;
margin:0;
padding:4px 10px;
background:#ecebe3;
border:1px solid #d5d3c7;
}
Im trying something like:
#categorycontent, .categorycontent{
display:block;
line-height:100%;
height:100%;
margin:0;
padding:4px 10px;
background:#ecebe3;
border:1px solid #d5d3c7;
}
but this isnt working.
Im beginner in css, thank you.
EDIT:
Screenshot with height:290px;
http://i45.tinypic.com/359z2ti.png
and screenshot with height:100%;
http://i46.tinypic.com/fwq4q8.png
you can add width as 100%.