2023年– date –
-
未分類
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