如何使我的博客内容正确对齐

问题描述 投票:0回答:2

您可以在下面的屏幕截图中看到,我的页面内容向左对齐太多,我想向右移动10像素或20像素。

当我使用padding-left:10px时,.content向右移动并与侧边栏重叠。

博客网址-qavalidation.com

enter image description here

html css blogs
2个回答
0
投票

您需要为.entry而不是.content设置填充

.entry {
    font-size: 1.125em;
    line-height: 1.6em;
    padding-left: 20px;
}

0
投票

您应将padding-left添加到.entry h4或对该元素添加更多填充。

.post-title, .entry h4 {
font-weight: bold;
color: #568e90;
padding-left: 10px;
}

enter image description here

更多填充以与bullet lists对齐

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.