CSSアウトラインプロパティ
<html> <head> </head> <body> <p style = "outline:thin solid green;"> This text is having thin solid freen outline. </p> <br /> <p style = "outline:thick dashed #009900;"> This text is having thick dashed green outline. </p> <br /> </p> </body> </html>
-
CSSのShorthandプロパティの概要
アウトラインの省略形プロパティは、要素の境界の周りに特定のスタイル(必須)、太さ、色の線を描画するように定義できますが、アウトラインは、境界プロパティとは異なり、要素の寸法の一部ではありません。 構文 CSSアウトラインShorthandプロパティの構文は次のとおりです- Selector { outline: /*value*/ } 例 概要の速記の例を見てみましょう プロパティ- <!DOCTYPE html> <html> <head> <title>CSS outline Shorthand</titl
-
HTMLDOMスタイルのアウトラインプロパティ
DOMスタイルのアウトラインプロパティは、HTMLドキュメントの要素のアウトラインを返し、変更します。 構文 以下は構文です- 1.概要を返す object.style.outline アウトラインの変更 object.style.outline = “width style color” 例 HTMLDOMスタイルのアウトラインプロパティの例を見てみましょう- <!DOCTYPE html> <html> <head> <style> body { &nbs