0

我想在 css 中创建一个元素,并使其与主要内容保持恒定的正确间距。

例如:-

.main
{
    padding: 0px 12px;
    margin: 12px 8px 8px 8px;
    min-height: 420px;
    width: 924px;
    height: 580px;
}

现在我正在创建一个图像,该图像需要与主​​要内容保持恒定距离,并且位于其右侧。

IE。无论窗口大小如何,始终从主要内容说 100 像素:-

    .NewElement {
    width: 78px;
    height: 70px;
    position: fixed;
    bottom: 550px;
    right: .main.width() + 100px;  <--- how do I represent this??
    display: none;
    text-indent: -9999px;
    background: url('../xxx.png') no-repeat;
    background-color: #000;
}

右:.main.width() + 100px;<--- 我如何正确表示这个?

4

2 回答 2

2

将“NewElement”放置在“主”DIV 中(假设这些是 DIV)并设置 margin-left:100px,因此它将始终相对于该主 DIV。

<div class="main">
    <div class="NewElement"></div>
</div>

这是一个小提琴。

于 2013-11-12T18:48:16.397 回答
0

您必须使用 javascript 或 jquery 来执行此操作:

var width = $('.main').css('width');
$('.NewElement').css('width',width+100);
于 2013-11-12T18:47:12.987 回答