LoginSignup
4
8

More than 5 years have passed since last update.

ラジオボタン・チェックボックスの大きさを変える

Posted at
index.html
<!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="utf-8">
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <input type="checkbox" name="checkbox" /><label>チェックボックス</label>
  <input type="radio" name="radio" /><label>ラジオ</label>
  <input type="radio" name="radio" /><label>ボタン</label>
</body>
</html>
style.css
input[type=checkbox] {
    width: 100px;
    height: 100px;
    vertical-align: middle;
}
input[type=radio] {
    width: 100px;
    height: 100px;
    vertical-align: middle;
}
4
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
8