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

CSSを使用したセレクターのテキストの最初の文字に特別なスタイルを追加するために使用される要素


:first-letter要素を使用して、ドキュメント内の要素の最初の文字に特殊効果を追加します。次のコードを実行して、テキストの最初の文字に特別なスタイルを追加してみてください-

<html>
   <head>
      <style>
         p:first-letter {
            font-size: 5em;
         }
         p.normal:first-letter {
            font-size: 10px;
         }
      </style>
   </head>
   <body>
      <p class="normal"> First character of this paragraph will be normal and will have font size 10 px;</p>
      <p>The first character of this paragraph will be 5em big as defined in the CSS rule above. Rest of the characters in this paragraph will remain normal. This example shows how to use :first-letter pseduo element to give effect to the first characters of any HTML element.</p>
   </body>
</html>

  1. CSSでテキストボタンのスタイルを設定するにはどうすればよいですか?

    以下は、CSSでテキストボタンのスタイルを設定するコードです- 例 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style> button {    border: none;    color: white;    font-weight: bolder;   &nb

  2. CSSでhr要素のスタイルを設定するにはどうすればよいですか?

    CSSを使用してhr要素のスタイルを設定するには、コードは次のとおりです- 例 <!DOCTYPE html> <html> <meta name="viewport" content="width=device-width, initial-scale=1"> <head> <style>    body{       font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-