HTML
 Computer >> コンピューター >  >> プログラミング >> HTML

HTMLDOMスタイルborderRightプロパティ


HTML DOM borderRightプロパティは、要素のRightborderプロパティを取得または設定するための省略形として使用されます。 borderRightプロパティには、border-Right-width、border-Right-style、border-Right-colorが含まれています。

以下は、-

の構文です。

borderRightプロパティの設定:

object.style.borderRight = "width style color|initial|inherit"

上記の特性は次のように説明されます-

パラメータ 説明
右の境界線の幅を設定します。
スタイル 右ボーダースタイルを設定します。
右枠の色を設定します。
初期 このプロパティをデフォルト値に設定します。
継承 親プロパティ値を継承します。

borderRightプロパティの例を見てみましょう-

<!DOCTYPE html>
<html>
<head>
<style>
   #P1 {
      border-Right: 4px solid magenta;
      font-size: 1.5rem;
   }
</style>
<script>
   function changeBorderRight(){
      document.getElementById("P1").style.borderRight="9px dashed red";
      document.getElementById("Sample").innerHTML="The Right border for the paragraph element is now";
   }
</script>
</head>
<body>
<p id="P1">This is some sample text inside the paragraph. Here is another line of this sample text</p>
<p>Change the above paragraph Right border properties by clicking the below button</p>
<button onclick="changeBorderRight()">Change Border Right</button>
<p id="Sample"></p>
</body>
</html>

出力

HTMLDOMスタイルborderRightプロパティ

「国境を右に変更」ボタンをクリックすると-

HTMLDOMスタイルborderRightプロパティ

上記の例では-

最初に、IDが「P1」の段落を作成しました。この段落には、テキストとそれに対応するcssスタイルが適用されています。

#P1 {
   border-Right: 4px solid magenta;
   font-size: 1.5rem;
}
<p id="P1">This is some sample text inside the paragraph. Here is another line of this sample text</p>

次に、ユーザーがクリックするとchangeBorderRight()関数を実行する「ChangeBorderRight」ボタンを作成しました。

pre class="result notranslate">
<button onclick="changeBorderRight()">Change Border Right</button>

changeBorderRight()関数は、getElementById()メソッドを使用してIDが「P1」の段落要素のborderRightスタイルのプロパティを取得し、そのプロパティ値を「9px破線の赤」に変更します。次に、この変更を示すメッセージが、innerHTMLプロパティを使用してIDが「Sample」の段落に表示されます。

function changeBorderRight(){
   document.getElementById("P1").style.borderRight="9px dashed red";
   document.getElementById("Sample").innerHTML="The right border for the paragraph element is now ";
}
になりました
  1. HTMLDOMスタイルborderRightStyleプロパティ

    HTML DOM borderRightStyleプロパティは、要素の正しい境界線スタイルを設定または返すために使用されます。 以下は、-の構文です。 borderRightStyleプロパティの設定- object.style.borderRightStyle = value 上記の特性は次のように説明されます- 値 説明 なし これは、境界線なしを指定するデフォルト値です。 非表示 これは「none」と同じですが、境界スペースを取ります。基本的には透明ですが、まだそこにあります。 点線 これは点線の境界線を定義します。 破線 これは破線の境界線を定義します

  2. HTMLDOMスタイルborderRightプロパティ

    HTML DOM borderRightプロパティは、要素のRightborderプロパティを取得または設定するための省略形として使用されます。 borderRightプロパティには、border-Right-width、border-Right-style、border-Right-colorが含まれています。 以下は、-の構文です。 borderRightプロパティの設定: object.style.borderRight = "width style color|initial|inherit" 上記の特性は次のように説明されます- パラメータ 説明