Home  >  Q&A  >  body text

The css file in the head tag can set the height of the image in the body tag

Set the width and height of the css file in the head tag. Why do you set the width and height of the img in the body tag?

熊安熊安2013 days ago1043

reply all(2)I'll reply

  • 秋香姐家的小书童

    秋香姐家的小书童2019-04-17 08:36:36

    If you want the images in the entire body to have the same height, then the code should be

    img{
        height:100px;
    }

    If it is a picture under a certain element, the code should be

    元素 img{
        height:100px;
    }

    Learn CSS selectors carefully Course http://www.php.cn/code/26580.html

    reply
    0
  • Cancelreply