tags:

views:

15

answers:

2

i have an issue with the theme i am developing for my blog (example), where below a video, there is a "extra" space/padding to its border

alt text

basically, i have a

<div class="media"> ... embeded stuff ... </div>

.media { border: 5px solid #CCC }

something like that

+2  A: 

Set line-height to 0 for the .media rule because the whitespace takes up space ( white :p ) ..

.media { border: 5px solid #CCC;line-height:0; }
Gaby
+1  A: 

just add this to your css:

object{
  vertical-align:bottom;
}

(or, alternatively, set line-hight to 0 for your .media)

oezi