私は1000pxの固定幅ページの左右に沿って退屈な破線(カスタム)を実現しようとしています。
左のものは大丈夫です、これは御馳走になります:
#border-left{
position: absolute;
float:left;
top: 0px;
bottom: 0;
width: 5px;
background-image: url('../img/border.gif');
background-repeat:repeat-y;
}
しかし、右側でやり直すと、うまくいきません。ウィンドウではなく、1000pxの比較的右側に配置する必要があります。
#border-right{
position: relative;
right: 0;
top: 0;
bottom: 0;
margin-top: -90px;
width: 5px;
background-image: url('../img/border.gif');
background-repeat:repeat-y;
}
親要素:
#container{
width:1000px;
display: block;
margin:0px auto;
text-align:left;
padding-top:90px;
}
それは機能しません。これを達成できますか?基本的にフロートする必要があります:そうです(しかし、ブラウザウィンドウの高さを100%にすることはできません)。ありがとう