CSS

 Computer >> コンピューター >  >> プログラミング >> CSS
  1. CSSでの相対的な位置付け

    相対配置では、要素は通常の位置を基準にして配置されます。これには、位置:相対を使用します 例 例を見てみましょう- <!DOCTYPE html> <html> <head> <style> div.demo {    position: relative;    color: white;    background-color: orange;    border: 2px dashed blue;    left: 50px; } <

  2. CSSを使用したテキストのインデント

    テキストのインデントには、CSSのtext-indentプロパティを使用します。これは、段落の最初の行をインデントするためのものです。 例 例を見てみましょう- <!DOCTYPE html> <html> <head> <style> div {    text-indent: 30px; } </style> </head> <body> <h1>Demo Heading</h1> <div> <p>This is demo text.

  3. CSSを使用した背景色の設定

    CSSを使用して背景色を設定するには、background-colorプロパティを使用します。 例 例を見てみましょう- <!DOCTYPE html> <html> <head> <style> .demo {    text-decoration: overline underline;    background-color: red; } </style> </head> <body> <h1>Details</h1> <p cla

  4. CSSで背景を繰り返す

    CSSの背景の繰り返しは、Webページで背景画像を繰り返す方法を設定するために使用されます。これには、background-repeatプロパティを使用します。以下は、プロパティ値にすることができます- background-repeat: repeat|repeat-x|repeat-y|no-repeat|initial|inherit; 例 例を見てみましょう- <!DOCTYPE html> <html> <head> <style> body {    background-image: url("htt

  5. CSSを使用した背景位置の設定

    背景位置とは、背景画像の開始位置を設定することです。これには、background-positionプロパティを使用します。 例 例を見てみましょう- <!DOCTYPE html> <html> <head> <style> body {    background-image: url("https://www.tutorialspoint.com/images/Swift.png");    background-repeat: no-repeat;    b

  6. CSS3での列ルールの設定

    列ルールを設定するには、省略形のcolumn-ruleプロパティを使用します。これにより、次のプロパティを設定できます- column-rule-width: set the width of the rule between columns column-rule-style: set the style of the rule between columns column-rule-color: set the rule of the rule between columns 列ルールの値は次のように設定できます- column-rule: column-rule-width

  7. CSS translate()関数

    CSSのtranslate()関数は、要素を水平方向と垂直方向に再配置するために使用されます。 例 例を見てみましょう- <!DOCTYPE html> <html> <head> <style> #demo1 {background-color: hsla(140, 100%, 50%, 0.8);} #demo2 {background-color: hsla(130, 100%, 50%, 0.6);} .translate_img {    transform: translate(50px, 0); } </

  8. CSSでの絶対ポジショニング

    絶対配置では、要素は最も近い位置にある祖先を基準にして配置されます。 例 例を見てみましょう- <!DOCTYPE html> <html> <head> <style> div.demo1 {    position: relative;    color: white;    background-color: orange;    border: 2px dashed blue;    width: 600px;    

  9. CSSを使用したリストスタイルタイプの設定

    CSSでリストスタイルタイプを設定するには、CSSでlist-style-typeプロパティを使用します。 例 順序付けされていないリストのリストスタイルタイプを設定している例を見てみましょう- <!DOCTYPE html> <html> <head> <style> ul {    list-style-type: square; } </style> </head> <body> <h2>Teams</h2> <ul> <li>Indi

  10. CSSの絶対単位と相対単位を理解する

    CSS絶対単位 絶対長の単位は相互に固定されています。これらの単位は、出力形式がすでにわかっている場合に使用されます。以下は、絶対長の単位の一部です- Sr.No 単位と説明 1 cm センチメートル 2 mm ミリメートル 3 in インチ(1インチ=96px =2.54cm) 4 px * ピクセル(1px =1inの1/96) 5 pt ポイント(1pt =1inの1/72) 6 pc picas(1pc =12 pt) 例 例を見てみましょ

  11. CSSを使用したリストマーカーの位置の変更

    list-style-positionプロパティは、リストアイテムマーカーの位置を設定するために使用されます。 例 例を見てみましょう- <!DOCTYPE html> <html> <head> <style> ul.demo1 {    list-style-position: outside; } ul.demo2 {    list-style-position: inside; } </style> </head> <body> <h1>Teams

  12. CSSのリストマーカーとしての画像の使用

    画像をリストマーカーとして使用するには、CSSのlist-style-imageプロパティを使用します。 例 画像をリストマーカーとして使用している例を見てみましょう- <!DOCTYPE html> <html> <head> <style> ul.demo1 {    list-style-image: url('https://www.tutorialspoint.com/images/Swift.png'); } ol.demo2 {    list-style-image: ur

  13. CSSを使用した線の高さの設定

    行の高さを設定するには、line-heightプロパティを使用します。以下はプロパティ値です- line-height: normal|number|length|initial|inherit; 例 例を見てみましょう- <!DOCTYPE html> <html> <head> <style> div {    line-height: 1.9; } </style> </head> <body> <h1>Demo Heading</h1> <div>

  14. CSSを使用したリンクのデフォルトの下線の削除

    CSSを使用してリンクのデフォルトの下線を削除するには、コードは次のとおりです- 例 <!DOCTYPE html> <html> <head> <style> a:link {    color: blue;    text-decoration: none; } a:visited {    color: blue;    text-decoration: none; } </style> </head> <body> <

  15. CSSを使用したリンクのスタイリング

    CSSを使用してリンクのスタイルを設定するには、最初に次のリンク状態を知っておく必要があります:リンク、訪問済み、ホバー、アクティブ。リンクのスタイルを設定するには、アンカー要素の疑似クラスを使用します- a:link for link a:visited forvisited link a:link for hover on link a:active for active link 例 例を見てみましょう- <!DOCTYPE html> <html> <head> <style> a:link {    color:

  16. CSSでの静的ポジショニング

    静的配置では、要素は上、下、左、および右のプロパティの影響を受けません。これには、 position:static。を使用します 例 例を見てみましょう- <!DOCTYPE html> <html> <head> <style> div.static {    position: static;    color: white;    background-color: orange;    border: 2px dashed blue; } </sty

  17. CSS3のrotate3d()関数

    CSSのrotate3d()関数は、3D空間で要素を回転させるために使用されます。回転量と回転角をrotate3d()のパラメータとして設定します。 例 例を見てみましょう- <!DOCTYPE html> <html> <head> <style> .demo {    transform: rotate3d(1, 1, 1, 45deg); } .skew_img {    transform-origin: left;    transform: skew(-0.10turn,

  18. CSSでキーワードを使用してフォントサイズを設定する

    font-sizeプロパティでフォントサイズを設定するには、キーワードも設定できます。これらのキーワードは、絶対サイズまたは相対サイズのキーワードに分けられます- 相対サイズのキーワード 次のキーワードが含まれています:大きい、小さい 絶対サイズのキーワード 次のキーワードが含まれています:xx-small、x-small、small、medium、large、x-large、xx-large、xxx-large 例 絶対サイズのキーワードでフォントサイズを設定する例を見てみましょう- <!DOCTYPE html> <html> <head> &l

  19. CSS3を使用して画像にセピア効果を適用する

    CSS3を使用して画像にセピア効果を適用するには、フィルタープロパティにセピア値を使用します。 例 コードは次のとおりです- <!DOCTYPE html> <html> <head> <style> img.demo {    filter: sepia(100%); } </style> </head> <body> <h1>Learn Spring Framework</h1> <img src="https://www.tutorialspo

  20. CSS3を使用して画像の彩度を調整する

    CSS3で画像を飽和させるには、フィルタープロパティの飽和プロパティ値を使用します。 例 画像の彩度を調整する例を見てみましょう- <!DOCTYPE html> <html> <head> <style> img.demo {    filter: saturation(500%); } </style> </head> <body> <h1>Learn Spring Framework</h1> <img src="https://www.tut

Total 1566 -コンピューター  FirstPage PreviousPage NextPage LastPage CurrentPage:25/79  20-コンピューター/Page Goto:1 19 20 21 22 23 24 25 26 27 28 29 30 31