如何在div内绘制正方形

时间:2019-03-02 13:24:02

标签: css

我有一个图像,我想在其中创建一个正方形,但是它绘制一个矩形。

p::after { 
  content: "";
  background-color: red;
  padding: 5px;
  /*line-height: 0px;*/
}
<p>That is not a square -&gt;</p>

1 个答案:

答案 0 :(得分:1)

display:inline-block将解决问题

p::after { 
  content: "";
  display:inline-block;
  background-color: red;
  padding: 5px;
  /*line-height: 0px;*/
}
<p>That is a square -&gt;</p>