diff options
Diffstat (limited to 'files/ja/web/css/border-top/index.md')
-rw-r--r-- | files/ja/web/css/border-top/index.md | 137 |
1 files changed, 137 insertions, 0 deletions
diff --git a/files/ja/web/css/border-top/index.md b/files/ja/web/css/border-top/index.md new file mode 100644 index 0000000000..2b5ce0aaa7 --- /dev/null +++ b/files/ja/web/css/border-top/index.md @@ -0,0 +1,137 @@ +--- +title: border-top +slug: Web/CSS/border-top +tags: + - CSS + - CSS Borders + - CSS Property + - Reference + - 'recipe:css-shorthand-property' +translation_of: Web/CSS/border-top +--- +<div>{{CSSRef}}</div> + +<p><span class="seoSummary"><strong><code>border-top</code></strong> は<a href="/ja/docs/Web/CSS/Shorthand_properties">一括指定</a>の <a href="/ja/docs/Web/CSS">CSS</a> のプロパティで、要素の上側の<a href="/ja/docs/Web/CSS/border">境界</a>のプロパティをすべて設定します。</span></p> + +<div>{{EmbedInteractiveExample("pages/css/border-top.html")}}</div> + +<p class="hidden">このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</p> + +<p>他の一括指定プロパティと同様に、 <code>border-top</code> は、一部の値が指定されていなくても、設定可能なプロパティをすべて設定します。指定されていないプロパティは既定値が設定されます。つまり・・・</p> + +<pre class="brush: css notranslate">border-top-style: dotted; +border-top: thick green; +</pre> + +<p>・・・は、実際には以下と同じです・・・</p> + +<pre class="brush: css notranslate">border-top-style: dotted; +border-top: none thick green; +</pre> + +<p>・・・そして、 <code>border-top</code> の前で設定された {{cssxref("border-top-style")}} の値は無視されます。 {{cssxref("border-top-style")}} の既定値は <code>none</code> なので、 <code>border-style</code> の部分の設定は境界線なしとなります。</p> + +<h2 id="Constituent_properties" name="Constituent_properties">構成要素のプロパティ</h2> + +<p>このプロパティは以下の CSS プロパティの一括指定です。</p> + +<ul> + <li>{{cssxref("border-top-color")}}</li> + <li>{{cssxref("border-top-style")}}</li> + <li>{{cssxref("border-top-width")}}</li> +</ul> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre class="brush: css no-line-numbers notranslate">border-top: 1px; +border-top: 2px dotted; +border-top: medium dashed green; +</pre> + +<p>一括指定プロパティの3つの値は任意の順序で指定可能で、また、1つまたは2つの値を省略することができます。</p> + +<h3 id="Values" name="Values">値</h3> + +<dl> + <dt><code><br-width></code></dt> + <dd>{{cssxref("border-top-width")}} を参照してください。</dd> + <dt><code><br-style></code></dt> + <dd>{{cssxref("border-top-style")}} を参照してください。</dd> + <dt>{{cssxref("<color>")}}</dt> + <dd>{{cssxref("border-top-color")}} を参照してください。</dd> +</dl> + +<h2 id="Formal_definition" name="Formal_definition">公式定義</h2> + +<p>{{CSSInfo}}</p> + +<h2 id="Formal_syntax" name="Formal_syntax">形式文法</h2> + +{{csssyntax}} + +<h2 id="Examples" name="Examples">例</h2> + +<h3 id="Applying_a_top_border" name="Applying_a_top_border">上側の境界の適用</h3> + +<h4 id="HTML">HTML</h4> + +<pre class="brush: html notranslate"><div> + このボックスには上側に境界線があります。 +</div></pre> + +<h4 id="CSS">CSS</h4> + +<pre class="brush: css notranslate">div { + border-top: 4px dashed blue; + background-color: gold; + height: 100px; + width: 100px; + font-weight: bold; + text-align: center; +} +</pre> + +<h4 id="Results" name="Results">結果</h4> + +<p>{{EmbedLiveSample('Applying_a_top_border')}}</p> + +<h2 id="Specifications" name="Specifications">仕様書</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">仕様書</th> + <th scope="col">状態</th> + <th scope="col">備考</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('CSS3 Backgrounds', '#propdef-border-top', 'border-top')}}</td> + <td>{{Spec2('CSS3 Backgrounds')}}</td> + <td>直接的な変更はないが、 {{cssxref("border-top-color")}} に適用される値が変更された。</td> + </tr> + <tr> + <td>{{SpecName('CSS2.1', 'box.html#propdef-border-top', 'border-top')}}</td> + <td>{{Spec2('CSS2.1')}}</td> + <td>有意な変更点なし。</td> + </tr> + <tr> + <td>{{SpecName('CSS1', '#border-top', 'border-top')}}</td> + <td>{{Spec2('CSS1')}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + +<p>{{Compat("css.properties.border-top")}}</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li>{{cssxref("border")}}</li> + <li>{{cssxref("border-block")}}</li> + <li>{{cssxref("outline")}}</li> +</ul> |