Is

前端 未结 6 2184
一向
一向 2020-11-22 17:16

I\'ve read somewhere that element behaves like both. If correct, could someone please explain with examples?

6条回答
  •  臣服心动
    2020-11-22 18:05

    For almost all purposes think of them as an inline element with a width set. Basically you are free to dictate how you would like images to display using CSS. I generally set a few image classes like so:

    img.center {display:block;margin:0 auto;}
    
    img.left {float:left;margin-right:10px;}
    
    img.right  {float:right;margin-left:10px;}
    
    img.border  {border:1px solid #333;}
    

提交回复
热议问题