css笔记:如何设置宽度





学习自 http://www.blablar.com/html/html_span_width_kb.html

"""
在HTML 的各种Element中,的确有既是inline,又能够设定宽度的情况存在。
"""

span {
  background-color:#ffcc00;
  display:-moz-inline-box;
  display:inline-block;
  width:150px;
}
</style>

fixed <span>width</span> span

你可能感兴趣的:(html,css)