1
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 3 years have passed since last update.

ボタンなどがくっついてしまう件

Last updated at Posted at 2020-05-09

こんなことも知らなかった・気づかなかったという個人的メモなのですが。

Elmなどのフロントエンドでボタンを配置するとくっついて表示されますよね?
(htmlをテンプレートにするようなものは違うのかもしれませんが)
kuttuita.png

CSSフレームワークなどの公式ページをみるとカラフルなボタンが間隔を開けて表示されてますが、これはmargin-rightなどを設定しているのかと思っていました。

これは.htmlの手書きだとinline要素は改行が半角スペースに変換されて表示される。
というだけでした。

Discord elm-jp の方々ありがとうございました。


<button>hoge</button>
<button>hoge</button>
<button>hoge</button>
<button>hoge</button>

hanareteru.png


<button>hoge</button><button>hoge</button>
<button>hoge</button><button>hoge</button>

hanareta.png


記事とは関係ないのですが、github.ioにファイルをアップしても、すぐには表示できないと思っていました。
しかしurlに /index.html とつければすぐに表示されそうということに気づきました。

1
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
1
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?