Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

make img tag take all div space

/*just add  display:block; OR   vertical-align:bottom; */
/* see the source for details!*/
div {width: 100px;}
img {
  width: 100px;
  height: auto;
  display:block;
  /*OR*/
  vertical-align:bottom;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #img #tag #div #space
ADD COMMENT
Topic
Name
7+4 =