html - Text is not completely being displayed inside a div? -
you can see in picture (css, behavior , divs).
the lower part of p letter , g letter hidden div.
http://img573.imageshack.us/img573/3553/screenshot3m.png
edit:
style.css:
/* structure */ .container { margin: 0 auto; overflow: hidden; width: 960px; } #header, #intro, #tagline, #content { background: url(images/bg.png) top center repeat; } #branding, .content, .content-block, .posts, #footer { margin-left: 10px !important; margin-right: 10px !important; } #intro h2, #content h2, #nav li { text-shadow: 0 1px 0 #fff; } /* header */ #header { } #header { color: #333 } #header a:hover { color: #28a } #branding { float: left; margin: 10px 0 10px; width: 940px; } #header h1, #lang { margin: 20px 0 12px; width: 280px; } #header h1 { float: left; width: 280px; } #nav { float: left; margin: 32px 0 10px; } #nav li { float: left; } #nav li { font-size: 14px; font-weight: 400; margin: 0 40px 0 0; } #lang { float: right; } #lang li { float: left; } #lang li { font-size: 10px; margin: 0 0 0 30px; } /* intro */ #intro, #intro2 { background: #333; padding: 30px 0; } #intro { height: 400px; } #intro2 { background: #333; padding: 30px 0; } #intro2 h2 { color: #ddd; } ...
you can try add css attribute line-height
.content h2{line-height: 35px;}
Comments
Post a Comment