📜  可以有宽度 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:49.733000             🧑  作者: Mango

代码示例1
/* An html span element does not have width or height,
because it is an inline element */
span{
  width: 10px; /* Does not work. Apparent width is still 0. */
}