css+div水平居中
2018-06-24 01:27:29来源:未知 阅读 ()
实现div内容水平居中
实现方案一:margin:0 auto;
div{ height:100px; width:100px; background:red; margin:0 auto; }
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>div水平居中</title> </head> <body> <div></div> </body> </html>
实现div水平居中方案二:position:absolute;绝对定位
div{ height:100px; width:100px; background:red; position:absolute; left:50%; right:50%; margin: auto; }
实现div水平垂直居中
实现方案一:position:fixed;固定定位
div{ height:100px; width:100px; background:red; position:fixed; left:0; top:0; bottom:0; right:0; margin:auto; }
实现方案二:position:absolute;绝对定位
div{ height:100px; width:100px; background:red; position:absolute; left:0; top:0; bottom:0; right:0; margin:auto; }
实现方案二:css3+position;
div{ height:100px; width:100px; background:red; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); }
transform为css3的新增属性,因此需要加上前缀,兼容手机和其他的浏览器。如
-ms-transform:translate(-50%,-50%); /* IE 9 */ -moz-transform:translate(-50%,-50%); /* Firefox */ -webkit-transform:translate(-50%,-50%);/* Safari and Chrome */ -o-transform:translate(-50%,-50%); /* Opera */
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- DIV居中的经典方法 2020-06-13
- 自学web前端达到什么水平,才能满足求职的标准? 2020-05-04
- 12.居中总结 2020-04-17
- div中图片和文字同一行实现垂直居中 2020-03-29
- CSS实现元素居中样式(水平居中和垂直居中) 2020-03-29
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash