我使用wordpress主题二十四,试图让我的页脚div宽度为100%并居中。我对"额外的css"做了一些修改。无济于事。我从其他来源复制了以下代码,这使得宽度正确,但仅限于我使用position:fixed;
时。
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
}
如果我将位置改为其他任何东西,宽度会缩小到20%,然后向右移动。我还尝试删除前3行(位置,左侧和底部),我尝试过覆盖边距和填充(例如padding: 0;
),但没有任何作用。
如何将页脚宽度设置为100%并处于静态位置?
答案 0 :(得分:0)
否认!我想到了。我的文本是一个页脚小部件,有自己的CSS。改变那里的宽度解决了我的问题
table_data = [[td.text for td in tr.select('td')] for tr in table.select('tr')]