Movatterモバイル変換


[0]ホーム

URL:


  1. 開発者向けのウェブ技術
  2. CSS
  3. リファレンス
  4. プロパティ
  5. margin-block-start

このページはコミュニティーの尽力で英語から翻訳されました。MDN Web Docsコミュニティーについてもっと知り、仲間になるにはこちらから。

View in EnglishAlways switch to English

margin-block-start

Baseline Widely available *

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2020年1月⁩.

* Some parts of this feature may have varying levels of support.

margin-block-startCSS のプロパティで、要素の論理的なインライン方向の先頭側のマージンを定義し、それが要素の書字方向やテキストの方向に応じて物理的なマージンに対応づけられます。

試してみましょう

margin-block-start: 20px;writing-mode: horizontal-tb;
margin-block-start: 20px;writing-mode: vertical-rl;
margin-block-start: 20%;writing-mode: horizontal-tb;
margin-block-start: auto;writing-mode: vertical-lr;
<section>  <div>    <div>One</div>    <div>Two</div>    <div>Three</div>  </div></section>
#container {  width: 300px;  height: 200px;  display: flex;  align-content: flex-start;  flex-direction: column;  justify-content: flex-start;}.row {  height: 33.33%;  display: inline-block;  border: solid #ce7777 10px;  background-color: #2b3a55;  color: #ffffff;  flex-shrink: 0;}#example-element {  border: solid 10px #ffbf00;  background-color: #2b3a55;}

構文

css
/* <length> 値 */margin-block-start: 10px; /* 絶対的な長さ */margin-block-start: 1em; /* テキストの大きさに対する相対値 */margin-block-start: 5%; /* 直近のブロックコンテナーの大きさに対する相対値 */margin-block-start: anchor-size(width);margin-block-start: calc(anchor-size(--myAnchor block, 20px) / 3);/* キーワード値 */margin-block-start: auto;/* グローバル値 */margin-block-start: inherit;margin-block-start: initial;margin-block-start: revert;margin-block-start: revert-layer;margin-block-start: unset;

これはmargin-top,margin-right,margin-bottom,margin-left の何れかのプロパティに対応し、どれに対応するかはwriting-mode,direction,text-orientation で定義された値によって決まります。

関連プロパティとして、要素の他のマージンを定義するmargin-block-end,margin-inline-start,margin-inline-end があります。

margin-block-start プロパティはmargin-left プロパティと同じ値を取ります。

公式定義

初期値0
適用対象margin と同じ
継承なし
パーセント値レイアウトモデルに依存
計算値長さで指定されると相当する絶対的な長さ、パーセント値として指定されると指定値、それ以外ではauto
アニメーションの種類length

形式文法

margin-block-start =
<'margin-top'>

<margin-top> =
<length-percentage>|
auto|
<anchor-size()>

<length-percentage> =
<length>|
<percentage>

<anchor-size()> =
anchor-size([<anchor-name>||<anchor-size>]? ,<length-percentage>?)

<anchor-name> =
<dashed-ident>

<anchor-size> =
width|
height|
block|
inline|
self-block|
self-inline

ブロック方向の先頭のマージンの設定

HTML

html
<div>  <p>テキストの例</p></div>

CSS

css
div {  background-color: yellow;  width: 120px;  height: 120px;}.exampleText {  writing-mode: vertical-lr;  margin-block-start: 20px;  background-color: #c8c800;}

結果

仕様書

Specification
CSS Logical Properties and Values Level 1
# margin-properties

ブラウザーの互換性

関連情報

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp