剩余的行(html / css问题)

时间:2016-01-14 04:37:17

标签: html css

我不明白这些行是如何创建的,但它们出现在页面底部。

enter image description here

Source

该网站正在WordPress上运行,但我仍然认为这是一个html / css问题

2 个答案:

答案 0 :(得分:0)

这是因为pseudo elements。以下是选择者:

.bottom_social .ssba:before

.bottom_social .addtoany_shortcode > div:after

注意这些CSS选择器并修改它们。

答案 1 :(得分:0)

有两个类.ssba.bottom_social .addtoany_shortcode > div:after,因此会创建这些行。如果这些元素不会在其他任何地方使用,您可以申请下面的属性:

.ssba{
display:none;
}
.bottom_social .addtoany_shortcode > div:after{
display:none;
}