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

CSSを使用してアウトラインの線のスタイルを設定します


アウトラインスタイル プロパティは、要素を囲む線のスタイルを指定します。

次のコードを実行してoutline-styleを実装してみてください。 プロパティ-

<html>
   <head>
   </head>
   <body>
      <p style = "outline-width:thin; outline-style:solid;">
         This text is having thin solid outline.
      </p>
      <br />
      <p style = "outline-width:thick; outline-style:dashed;">
         This text is having thick dashed outline.
      </p>
      <br />
      <p style = "outline-width:5px;outline-style:dotted;">
         This text is having 5x dotted outline.
      </p>
   </body>
</html>

  1. CSSを使用してアニメーションの開始の遅延を設定します

    animation-delayを使用します CSSを使用したアニメーションの開始の遅延を設定するプロパティ: 例 <!DOCTYPE html> <html>    <head>       <style>          div {             width: 150px;             height: 2

  2. CSSでページ付けのスタイルを設定する

    次のコードを実行して、CSSでページ付けのスタイルを設定できます 例 <!DOCTYPE html> <html>    <head>       <style>          .demo {             display: inline-block;          }