0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

HTML & CSS (progate初級〜中級編)

0
Last updated at Posted at 2019-09-30

HTML

input
 1行のテキスト入力を受け取るための要素。終了タグが不要。
 type属性に”submit”を指定すると、入力欄から送信ボタンに変わる。
 value属性で表示されるテキストを変更できる。
textarea
 複数行のテキスト入力を受け取るための要素。

<form>
 <p>input要素</p>
 <input vaulte="ボタン">
 <p>textarea要素</p>
 <textarea></textarea>
</form>

CSS

opacity
 要素を透明にできる。
 透明度は**0.0(完全に透明) ~ 1.0(完全に不透明)**の数値で指定。
letter-spacing
 文字の間隔を指定できる。
 pxを使用。

h1 {
background-color:#fff;
opacity:0.8;
letter-spacing:10px;
}
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?