LoginSignup
0
0

More than 3 years have passed since last update.

ひとつの親要素の中で子要素をそれぞれ左寄せと右寄せにするには...

親要素に対して
display: flex;
justify-content: space-between;


太字じゃなくするのは

font-weight: normal;


行の高さを指定するのは

line-height:px;


スクロールしても固定させるのは

position: fixed;

固定部分と画像が重なるときは、

z-index: 9999;


背景画像を指定するのは

background-image: url();

背景画像を領域いっぱいに広げるのは

background-size: cover;


padding:上 右 下 左;


liの中にaタグ使ってるときのテキストスタイルを変更するときはaタグに対して指定する

a{
text-decoration: none;
color:white;
}


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