首页 > 代码库 > css中将div定位居中
css中将div定位居中
一直,我是认为定一个width,然后写一句margin:0 auto,就可以,但是有时也会不管用。
例如当我要定一个宽度为700的div,用相对定位定在中间。任你怎么拉伸都是居中。
看实例子
<!doctype html> <html> <head> <meta charset="utf-8"> <title>无标题文档</title> <script type="text/javascript" src=http://www.mamicode.com/"jquery-2.0.3.js"></script> <style> .scroll{height:2000px;} .main{width:100%;height:550px; background-color:#fe3a08; position:relative;} .cent{width:700px;color:#fff; font-size:46px; font-family:"幼圆"; position:absolute; left:50%; margin-left:-350px;line-height:500px;top:0px;} </style> <script> function changeTop(obj, value) { var offsetTop = obj.offset().top + value; var scrollTop = $(window).scrollTop(); console.log(offsetTop); console.log(scrollTop); var result = scrollTop - offsetTop ; if ((offsetTop < scrollTop) ) { obj.find(".bg-image").stop(true,true).animate({ "top": result }, 300); } if (offsetTop +550 < scrollTop) { obj.find(".bg-image").stop(true,true).animate({ "top": "0px" }, 300); } } $(function(){ $(window).scroll(function () { changeTop($(".main"),80); }) }) </script> </head> <body> <div class="scroll"> <div class="main"> <div class="cent bg-image"> R6 BRANCH OFFICE | 工程管理 </div> </div> </div> </body> </html>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。