移位块的位置:绝对

时间:2013-09-10 12:48:06

标签: html css css3

jsFiddle Demo


这将CSS代码块.slide_panel向左移动500px。

http://prozaik.16mb.com/misc/h1.png


我需要CSS代码将.slide_panel

宽度左侧的单位.slide_panel移位

http://prozaik.16mb.com/misc/h2.png


CSS:

.wrap_news{
    position: relative;
    width: 500px;
    margin: 0 auto;
    background: cyan;
    height: 500px;
}

.wrap_news .slide_panel{
    position: absolute;
    left: -100%;
    top: 100px;
    background: red;
    padding-right: 30px;
    border: 1px solid #000; 
}

.wrap_news .slide_panel.showPanel{
    left: 0;
}

2 个答案:

答案 0 :(得分:5)

您需要将正确的属性设置为100%,因此它将被推到左边界之外:

right: 100%;

http://jsfiddle.net/Hptdb/2/

答案 1 :(得分:0)

你可以制作

right: 100%;

如果你是css

的新手,你可以使用表格
<table align="center" width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td valign="top" width="50%" align="right">left</td>
<td valign="top" width="50%">right</td>
</tr>
</table>