我想在 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;<--- 我如何正确表示这个?