CSSハイフンプロパティ
ハイフンプロパティは、テキストが複数行に折り返されるときに単語をハイフンでつなぐ方法を指定するために使用されます。次の値があります-
hyphens: none|manual|auto|initial|inherit;
例
<!DOCTYPE html> <html> <head> <style> div { width: 50px; border: 2px dashed red; } .demo { -webkit-hyphens: manual; -ms-hyphens: manual; hyphens: manual; } </style> </head> <body> <h1>Demo Heading</h1> <h2>hyphens: manual property value</h2> <div class="demo">This is a demo text.</div> </body> </html>
出力
例
別の例を見てみましょう-
<!DOCTYPE html> <html> <head> <style> div { width: 50px; border: 2px dashed red; color: blue; } .demo { -webkit-hyphens: auto; -ms-hyphens: auto; hyphens: auto; } </style> </head> <body> <h1>Demo Heading</h1> <h2>hyphens: auto property value</h2> <div class="demo">This isssssss a demo text.</div> </body> </html>
出力
-
CSSの権利プロパティ
rightプロパティは、要素の水平位置を設定するために使用されます。 −として設定されます right: auto|length|initial|inherit; 例 CSSで適切なプロパティを実装する例を見てみましょう- <!DOCTYPE html> <html> <head> <style> div { text-align: justify; text-justify: inter-word; color: white; backgr
-
CSSでのカラープロパティの設定
CSSを使用して、要素のテキスト、境界線、背景の色を定義できます。 colorプロパティは、要素のテキストの色を指定するために使用されます。 構文 CSScolorプロパティの構文は次のとおりです- Selector { color: /*value*/ } 次の例は、CSSカラープロパティ-を示しています。 例 <!DOCTYPE html> <html> <head> <style> div { color: seashell; background-color