我试图在内容的左侧和右侧留出均匀的空白空间。我尝试使用 justify 但在不同长度的内容上它会产生问题。
问题:无论内容的长度如何,如何在内容的左侧和右侧添加等量的空白?我肯定需要在内容的左侧添加 15px 填充。
见代码:
<div class="pop">
Over the weekend, I went to a sunset picnic on a rooftop in Brooklyn.
The evening couldn’t have been more picturesque — a group of stylish women
chatting and lounging on blankets, framed against a lavender and glittering
cityscape.
</div>
<div class="pop">
This is just one sentence as an example.
</div>
CSS:
.pop {
border: 1px solid #999;
margin-top: 10px;
padding-left: 15px;
padding-top: 10px;
padding-bottom: 10px;
text-align: justify;
padding-right: 15px;
}
更新:
我希望内容看起来不居中,但它看起来应该在左侧和右侧具有相同数量的填充。所以左边应该有 padding-left: 15px; 并且右侧的内容应调整为与左侧具有相同数量的空白。我希望这更清楚。