ボタンの現在の位置から特定のピクセル数だけ上下にボタンの位置を変更しようとしています。現在地を取得する方法を教えてください。
ありがとう
アプローチの1つ:相対位置を使用できます
button {
position: relative;
top: 2px;
}
使用することもできますmargin-top
button {
margin-top: 2px;
}
margin-top: 2px または margin-top: -2px を単純に使用できますhttp://www.w3schools.com/css/css_margin.aspを参照してください