有時,開發人員需要將文字放入圖示中。例如,在「喜歡」圖示內新增喜歡的總數可以使 UI 更好,在評論圖示內新增評論,在任何圖示中顯示特定的數字等。
在 HTML 中,我們可以分別加入文字和圖示。之後,我們可以設定文字的位置,將它們放置在圖示的中間。在本教程中,我們將學習將文字放入已建立的圖示內的不同範例。
使用者可以按照下面的語法設定文字的位置,將其放入已建立的圖示內。
text { position: absolute; text-align: center; width: value; padding-top: value; }
在上面的語法中,「絕對」位置會根據父元素的位置來變更文字的位置。另外,我們需要根據圖示的寬度和 padding-top 指定文字的寬度,以將文字放在圖示的中間。
在下面的範例中,我們使用 ionic 框架在網頁上顯示圖示。在這裡,我們在網頁上新增了心形圖示。此外,我們還添加了數位文字。在 CSS 中,我們設定圖示的字體大小和「絕對」位置。此外,我們還設定了文字寬度和頂部填充,將文字放置在中間。
在輸出中,使用者可以觀察心形圖示中間的文字。
<html> <head> <style> .text { font-size: 2rem; position: absolute; text-align: center; width: 8rem; padding-top: 4rem; } </style> <link href = "https://code.ionicframework.com/1.3.0/css/ionic.min.css" rel = "stylesheet" /> </head> <body> <h3> Placing the <i> text inside the icon </i> using CSS </h3> <div> <span> <span class = "text"> LOVE </span> <i style = "font-size: 10rem;" class = "ion-ios-heart-outline"> </i> </span> </div> </body> </html>
在下面的範例中,我們使用 font-awesome 庫在網頁上新增圖示。 font-awesome 庫包含一些預先定義的圖標,其中包含我們可以更改的文字。
這裡,我們使用span元素來新增圖示。此外,我們使用帶有圖標和文字元素的不同類別名稱,將文字元素放在圖標中間。
在輸出中,我們可以看到圖示內的文字。
<html> <head> <link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" /> </head> <body> <h2> Placing the <i> text inside the icon </i> using CSS</h2> <div> <span class = "fa-stack fa-3x"> <i class = "fa fa-comment fa-stack-2x"> </i> <strong class = "fa-stack-1x fa-stack-text fa-inverse"> 87 </strong> </span> <span class = "fa-stack fa-3x"> <i class = "fa fa-certificate fa-stack-2x"> </i> <span class = "fa fa-stack-1x fa-inverse"> 3 </span> </span> </div> </body> </html>
我們學習了使用 CSS 在圖示內加入文字。我們需要根據父元素設定文字的位置並調整內邊距或邊距。此外,使用者可以使用 CSS 建立自訂圖標,並嘗試將文字放置在其中,而不是使用預先建立的 SVG 圖標。
以上是如何將文字放置在已建立的圖示內部?的詳細內容。更多資訊請關注PHP中文網其他相關文章!