1

我正在为灯箱使用 css 文件,它在图像底部显示关闭 X 十字我希望在顶部如何执行此操作

belwo 是我的 css 文件

 /* line 112, ../sass/lightbox.sass */

 .lb-data .lb-close {
 width: 35px;
 float: right;
 padding-bottom: 0.7em;
  outline: none;
}


/* line 117, ../sass/lightbox.sass */


.lb-data .lb-close:hover {
 cursor: pointer;
 }
4

1 回答 1

1

嘿,我想你想要这样

首先认为你应该定义你的主容器位置相对并给出关闭按钮位置绝对并根据你的布局定义左上右下角......

CSS

.lb-data{
width:200px;
    height:200px;
    background:red;
    margin:100px 0 0 100px;
    position:relative;
}

.lb-data .lb-close {
 width: 35px;
    height:25px;
  position: absolute;
 padding-bottom: 0.7em;
  outline: none;
    top:-36px;
    right:-13px;
    background:green;
    color:white;
    font-weight:bold;
}


/* line 117, ../sass/lightbox.sass */


.lb-data .lb-close:hover {
 cursor: pointer;
 }

HTML

<div class="lb-data">


    <div class="lb-close">XX</div>

</div>

现场演示http://jsfiddle.net/rohitazad/GgGzm/

于 2012-04-19T09:00:29.623 回答