Quantcast
Channel: CSSタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8640

Buttonの作り方

$
0
0

Button の作成

今回はaタグを使ってボタンを押すと遷移するようにします

html

buttonタグでaタグを囲みます。

html
<button><ahref="">ボタン</a></button>

aはインライン要素なのでボタンの文字列以外の部分を押しても反応しない。

cssでaタグをブロック要素にすると解消されるらしい。

それでも無理ならblock要素にした後aタグのheight widthをボタンタグと同じにする。

css
button{width:x;height:x;}a{display:block;width:x;height:x;}

Viewing all articles
Browse latest Browse all 8640

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>