圆月山庄资源网 Design By www.vgjia.com
关于css定位有很多文章讲述:
如果有一个元素div ,他的position属性设置为absolute,那么这个div 的位置取决于其父元素中position值设置为relative的元素。如果在其父元素中没有一个元素的position值是relative、absolute、或者fixed,那么这个div位置将以 body位置为参考。
但是对于某些浏览器来说似乎不是每个元素都遵从这一规则,有如下一段代码
CSS Code复制内容到剪贴板- table{
- margin-left: 100px;
- margin-top: 50px;
- }
- td{
- height: 150px;
- width: 100px;
- position: relative;
- }
- td div{
- height: 30px;
- width: 50px;
- background-color: red;
- position: absolute;
- left: 10px;
- top:50px;
- }
- <table border="1">
- <tr>
- <td></td>
- <td></td>
- <td>
- <div>这是一个position:absolute元素</div>
- </td>
- </tr>
- </table>
由于div元素的尺寸较小,理想的情况是div总是在最后一个td中,但是在firefox中div并不以td为参考,而是body。
所以要实现这个效果的兼容方式是在td中添加一个能应用position:relative的元素,上述代码可以更改为
- <table border="1">
- <tr>
- <td></td>
- <td></td>
- <td>
- <div style="position:relative;"
- <div>这是一个position:absolute元素</div>
- </div>
- </td>
- </tr>
- </table>
这样就可以保证 div元素始终在td中。
table的td相对定位实例
下面我们来看一个处理td相对定位的实例,这里我们建两个table样式:table和table2
- .table,.table2
- {
- overflow:hidden;
- }
- .table > .header
- {
- position:relative;
- height:40px;
- background-color:#84a9cc;
- }
- .header > .header-title
- {
- margin:0 auto;line-height:40px;color:#fff;width:80px;text-align: center;font-size:14px;
- }
- .header > .header-add
- {
- background-color: #488FD2;
- color: #FFFFFF;
- cursor: pointer;
- height: 20px;
- line-height: 20px;
- padding: 10px;
- position: absolute;
- rightright: 0;
- text-align: center;
- top: 0;
- width: 45px;
- }
- .header > .header-search
- {
- background-color: #fff;
- height: 30px;
- line-height: 20px;
- position: absolute;
- rightright: 80px;
- text-align: center;
- top: 5px;
- width: 200px;
- }
- .table > .body,.table2 > .body
- {
- border: 1px solid #BCC6D0;/border-style:none solid solid solid;/background-color:#fff;
- }
- .header-search > input
- {
- border:none;
- border-right: 1px solid #BCC6D0;
- color: #666666;
- font-size: 14px;
- height: 100%;
- line-height: 100%;
- width: 170px;
- float:left;
- }
- .header-search > .search-logo
- {
- float:left;width:29px;height:30px;
- background:url(…/…/images/global/serachBlue.png) center no-repeat;
- }
- tbody > .tr
- {
- height:20px;line-height:20px;
- }
- th
- {
- display:inline-block;margin-right:-3px;
- }
- th + th
- {
- margin-left:-3px;
- }
- td
- {
- padding:10px 0;display: inline-block;margin-right: -3px;
- }
- td + td
- {
- margin-left: -3px;
- }
- tbody > .tr:nth-child(2n+1)
- {
- background-color:#e6e5e5;
- }
- .table2 tbody > .tr:nth-child(2n+1)
- {
- background-color:#fff;
- }
- .ml30
- {
- margin-left:30px;
- }
- .tr .checkbox
- {
- width:20px;border:1px solid #BCC6D0;height:20px;cursor:pointer;float:left;
- }
- .tr .checkbox.selected
- {
- background-color:#488FD2;
- }
- .tr .checkbox > input[type=‘checkbox’]
- {
- display:none;
- }
- table.body,table2.body
- {
- width:100%;
- overflow-y:auto;
- }
- .body
- {
- margin:0;
- }
- td, td div
- {
- font-size:14px;text-align: center;
- }
- .canClick
- {
- color:#2E5CB9;cursor:pointer;
- }
- .btn {
- background-color: #488FD2;
- color: #FFFFFF;
- cursor: pointer;
- font-size: 14px;
- padding: 6px 10px;
- }
- .line > .submit
- {
- float:rightright;padding:10px 25px;
- }
- .btnPush > .tagRight {
- background: url("…/…/images/global/smallGotoRight.png") no-repeat scroll center center #9EC5EB;
- float: left;
- height: 85px;
- width: 8px;
- }
- .opcity5
- {
- opacity:0.5;
- filter:alpha(opacity=50);
- }
- .search {
- background-color: #FFFFFF;
- height: 30px;
- line-height: 20px;
- text-align: center;
- width: 210px;
- }
- .search > input
- {
- border:none;
- border: 1px solid #BCC6D0;
- color: #666666;
- font-size: 14px;
- height: 28px;
- line-height: 100%;
- width: 170px;
- float:left;
- }
- .search > .search-logo
- {
- float:left;width:29px;height:30px;
- background:url(…/…/images/global/searchWhite.png) center no-repeat #488FD2;
- }
- .tableRight
- {
- float:left;margin-left:20px;width: 962px;
- }
- .btnLeft
- {
- float:left;
- }
- th {
- font-size: 14px;
- font-weight: normal;
- line-height: 35px;
- height:35px;
- }
- .textl {
- text-align: left;
- }
- .table2 td
- {
- border-top:1px solid #BCC6D0;
- }
- .hoverTag
- {
- cursor:pointer;position: relative;
- }
- .titTag
- {
- min-width:135px;height:50px;display:none;position:absolute;
- }
- .titTag > .titTag-left, .titTag > .titTag-msg
- {
- float:rightright;
- }
- .titTag > .titTag-left
- {
- width:15px;
- height:100%;
- }
- .titTag > .titTag-msg
- {
- background-color:#fcffe0;min-width:119px;border:1px solid #BCC6D0;height:48px;text-align:left;
- }
圆月山庄资源网 Design By www.vgjia.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
圆月山庄资源网 Design By www.vgjia.com
暂无评论...
稳了!魔兽国服回归的3条重磅消息!官宣时间再确认!
昨天有一位朋友在大神群里分享,自己亚服账号被封号之后居然弹出了国服的封号信息对话框。
这里面让他访问的是一个国服的战网网址,com.cn和后面的zh都非常明白地表明这就是国服战网。
而他在复制这个网址并且进行登录之后,确实是网易的网址,也就是我们熟悉的停服之后国服发布的暴雪游戏产品运营到期开放退款的说明。这是一件比较奇怪的事情,因为以前都没有出现这样的情况,现在突然提示跳转到国服战网的网址,是不是说明了简体中文客户端已经开始进行更新了呢?
更新日志
2024年12月24日
2024年12月24日
- 小骆驼-《草原狼2(蓝光CD)》[原抓WAV+CUE]
- 群星《欢迎来到我身边 电影原声专辑》[320K/MP3][105.02MB]
- 群星《欢迎来到我身边 电影原声专辑》[FLAC/分轨][480.9MB]
- 雷婷《梦里蓝天HQⅡ》 2023头版限量编号低速原抓[WAV+CUE][463M]
- 群星《2024好听新歌42》AI调整音效【WAV分轨】
- 王思雨-《思念陪着鸿雁飞》WAV
- 王思雨《喜马拉雅HQ》头版限量编号[WAV+CUE]
- 李健《无时无刻》[WAV+CUE][590M]
- 陈奕迅《酝酿》[WAV分轨][502M]
- 卓依婷《化蝶》2CD[WAV+CUE][1.1G]
- 群星《吉他王(黑胶CD)》[WAV+CUE]
- 齐秦《穿乐(穿越)》[WAV+CUE]
- 发烧珍品《数位CD音响测试-动向效果(九)》【WAV+CUE】
- 邝美云《邝美云精装歌集》[DSF][1.6G]
- 吕方《爱一回伤一回》[WAV+CUE][454M]