让内联元素支持宽高的几个设置

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
<style>
span{
    /*float: left;*/
    /*position: absolute;*/
    /*display: inline-block;*/
  /*display: block;*/
width: 100px; height: 100px; background:red; } </style> </head> <body> <span>123</span> </body> </html>

猜你喜欢

转载自www.cnblogs.com/xiadengqi/p/9759543.html