Why does an inline element accept width and height when floated?

倾然丶 夕夏残阳落幕 提交于 2019-12-17 21:08:04

问题


Now I have a span element I give it width and height for example 500px I know it inline element so it doesn't accept width and height but why it applies when I float it??

span.first {
  width: 500px;
  height: 500px;
  border: 1px solid #000;
  float: right;
}

span.second {
  width: 500px;
  height: 500px;
  border: 1px solid #000;
}
<span class="first">with float</span>
<span class="second">without float</span>

https://codepen.io/kemozzz/pen/KvVrXj


回答1:


In accordance with CSS rules, when you apply float to an element, in most cases it becomes a block element. Elements that are inline and inline-block will compute to block.

From MDN:




回答2:


When you float an element, it automatically becomes display: block.

From the spec:

https://www.w3.org/TR/CSS22/visuren.html#dis-pos-flo



来源:https://stackoverflow.com/questions/45404969/why-does-an-inline-element-accept-width-and-height-when-floated

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!