“Schriftart fantastisch vor CSS” Code-Antworten

Schriftart fantastisch vor CSS

.desc > ul > li::before{
    font-family: "Font Awesome 6 Free"; 
    font-weight: 400; 
    content: "\f058";
    padding-right: 0.5rem;
}
Strange Snake

vor der CSS -Schriftart fantastisch

css code
---------
.wrapper {
    width:160px;
    margin:20% auto;
}

p {
  border:1px solid #666;
  padding:12px 25px;
}

p.email:before,
p.mobile:before{
   font-family: FontAwesome;
   display: inline-block;
   padding-right: 6px;
   vertical-align: middle;
}

p.mobile:before {
   content: "\f095";
}

p.email:before {
   content: "\f003";
}

html code
------------
<div class="container">
    <div class="row wrapper">
       <p class="mobile">Mobile No</p>
       <p class="email">Email</p>
    </div>
</div>
Ankur

Ähnliche Antworten wie “Schriftart fantastisch vor CSS”

Fragen ähnlich wie “Schriftart fantastisch vor CSS”

Weitere verwandte Antworten zu “Schriftart fantastisch vor CSS” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen