我试图将“讨论”“埋葬”与网站中的上述文本对齐,但徒劳无功 http://pligg.marsgibson.info/story.php?title=latest-headling-mews-gossip-fun-entertainment-music -gala-and-so-on-for-for-you-only-for-the- purpose-of-entertainment-you
看截图
我想像屏幕截图一样对齐
这如何实现?
我试图将“讨论”“埋葬”与网站中的上述文本对齐,但徒劳无功 http://pligg.marsgibson.info/story.php?title=latest-headling-mews-gossip-fun-entertainment-music -gala-and-so-on-for-for-you-only-for-the- purpose-of-entertainment-you
看截图
我想像屏幕截图一样对齐
这如何实现?
您需要将 span.linksummaryDiscuss 移动到带有 storycontent1 类的 div
或者只是将它包装在一个 div 中并设置它的样式(有点类似于 div.storycontent1)
.newdiv {
padding: 0 80px;
width: 580px;
}
选项1
删除左填充.storycontent1
:
.storycontent1
{
padding-left:0;
}
然后将填充添加到.storycontent
.storycontent
{
padding-left:80px;
}
选项 2
添加此样式规则:
#linksummaryDiscuss {
padding-left: 80px;
}
此选项仅在Discuss
跨度始终存在时才有效。
移动样式:padding: 0 80px;
从.storycontent1
选择器到.storycontent
.