美文网首页
img 是行内元素还是块元素?设为块元素之后可以设置宽高吗?

img 是行内元素还是块元素?设为块元素之后可以设置宽高吗?

作者: Lether100 | 来源:发表于2017-06-15 17:43 被阅读0次
    <!doctype html>
    <html>
        <head>
            <title>hello</title>
            <style type='text/css'>
                .cell{
                    width:'200px';
                    height:'100px';
                }
                /*img{
                    display: inline-block;
                    width:'50px';
                    height:'50px';
                }*/
            </style>
        </head>
    
        <body>
           <div class='cell'>
               <div class='img'>
                    <img src="timg.jpg" ></img>
                    <img src="timg.jpg" ></img>
                </div>
           </div>
        </body>
    </html>
    
    

    结果:
    图片是多大img标签就有多大

    相关文章

      网友评论

          本文标题:img 是行内元素还是块元素?设为块元素之后可以设置宽高吗?

          本文链接:https://www.haomeiwen.com/subject/gwjuqxtx.html