-
lightningの投稿一覧サムネを正方形にする
.vk_post .vk_post_imgOuter:before {content: “”;display: block;padding-top: 100%!important;} 追加CSS -
box-sizing
https://developer.mozilla.org/ja/docs/Web/CSS/box-sizing -
max-width min-width
https://saruwakakun.com/html-css/basic/max-min-width -
ショートハンド
https://webliker.info/css-short-hand/ -
@important
-
練習問題
ボタンのCSS https://kojika17.com/2017/07/css-architecture.html -
paddingとmargin
どちらも要素のまわり余白を指定するものですが、以下のような違いがあります。 padding:要素の内側の余白 margin:要素の外側の余白 https://saruwakakun.com/html-css/basic/margin-padding https://webliker.info/css/50549/ -
疑似要素と疑似クラス
疑似要素とは 疑似要素とは、要素内の特定の文字や行に対してスタイルを指定したりするものです。 疑似要素は、コロンコロンで始まるキーワードです。 よく使われる疑似要素 :before{} :after{} :first-letter{} 疑似クラスとは 疑似クラスとは、要素が特... -
折り返しを制御する
https://saruwakakun.com/html-css/basic/white-space -
selector
セレクタの優先順位 !important インラインスタイルシート形式 IDセレクタ クラスセレクタ、属性セレクタ 要素セレクタ ユニバーサルセレクタ(*) https://webst8.com/blog/css-selector-priority/
12