Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
画面の下部にボタンを配置する必要があります。絶対サイズではなく相対サイズを使用する必要があるため、どの画面サイズにも適合します。
私のCSSコード:
position:relative; left:20%; right:20%; bottom:5%; top:60%;
以下のCSSコードは、常にページの下部にボタンを保持します
position:absolute; bottom:0;
あなたは相対的な位置でそれをしたいので、あなたは行くべきですmargin-top:100%
margin-top:100%
position:relative; margin-top:100%;
EDIT1 : JSFiddle1
EDIT2:ボタンを画面中央に配置するには、
position:relative; left: 50%; margin-top:50%;
JSFiddle2
これはどの解像度でも機能しますが、
button{ position:absolute; bottom: 5%; right:20%; }
http://jsfiddle.net/BUuSr/
<button style="position: absolute; left: 20%; right: 20%; bottom: 5%;"> Button </button>