发布网友 发布时间:2022-04-20 19:30
共3个回答
懂视网 时间:2022-04-20 23:51
1、一般情况下DIV居中失效是因为没写DTD语句在页面的最上方加上:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
就可以了!其实其他很多css的问题也是因为没有加上dtd语句引起的。
2、使用margin来让DIV居中
最简单的写法就是:
.divstyle{ margin:0 auto; }
复杂一些就把左右边距都加上:
.divstyle{ margin-left:auto; margin-right:auto; }
这样就可以试想DIV居中了!
热心网友 时间:2022-04-20 20:59
你先创建一个大的DIV然后把你想居中的DIV放进去然后用 margio: 0 auto;热心网友 时间:2022-04-20 22:17
代码发上来