头闻号

深圳市隆林电子有限公司

LED灯具|其他专门用途灯具|其他室内照明灯具|其他室外照明灯具

首页 > 新闻中心 > 科技常识:div水平垂直居中的完美解决方案
科技常识:div水平垂直居中的完美解决方案
发布时间:2024-11-09 06:18:13        浏览次数:3        返回列表

今天小编跟大家讲解下有关div水平垂直居中的完美解决方案 ,相信小伙伴们对这个话题应该有所关注吧,小编也收集到了有关div水平垂直居中的完美解决方案 的相关资料,希望小伙伴们看了有所帮助。

让div居中对齐使用margin-left:auto;margin-right:auto; 可以让你的div居中对齐。 .style{margin-left:auto;margin-right:auto;} 缩写形式为: .style{margin:0 auto;} 数字0 表示上下边距是0。可以按照需要设置成不同的值。 查看下面的例子: <!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"lang="zh-cn"> <head> <meta http-equiv="Content-Type"content="text/html; charset=gb2312"/> <title>居中div演示效果</title> <style type="text/css"> .align-center{ margin:0 auto; width:500px; background:red; text-align:center; } </style> </head> <body> <div class="align-center">居中div演示效果</div> </body> </html> 提示:您可以先修改部分代码再运行注意 需要加上上面的那句 才能生效 要是不想要这句的话 也可以给body加一个属性: body{text-align:center;} 另外 让div内的内容(包括文字及图片)居中的代码是: text-align:center; div居中的完美解决方案! (水平垂直居中)1,关于居中使用css为:position:fixed;left:50%;top:50%;margin-left:width/2;margin-top:height/2; 对于ie6,只能把position:改成absolute; <!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"lang="zh-cn"> <head> <meta http-equiv="Content-Type"content="text/html; charset=gb2312"/> <title>水平垂直居中div演示效果</title> <style type="text/css"> .align-center{ position:fixed;left:50%;top:50%;margin-left:width/2;margin-top:height/2;} </style> </head> <body> <div class="align-center">水平垂直居中div演示效果</div> </body> </html> 提示:您可以先修改部分代码再运行

来源:爱蒂网