📜  内联块和 50% 宽度未对齐项目 - CSS 代码示例

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

代码示例1
body{
  margin: 0; /* removing the default body margin */
}

div{
  display: inline-block;
  width: 50%;
}

.left{
  background-color: aqua;
}

.right{
  background-color: gold;
}