“tekst w granicy” Kod odpowiedzi

Border tekstowy CSS

h1 {
  -webkit-text-stroke: 1px black;
}
Homely Horse

CSS Tekst Border

h1 {
  color: white;
  text-shadow:
   -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
}
Lioruby

Umieść granicę wokół tekstu w CSS

text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
If-dev

granica tekstu w HTML

/*All types of border*/
p.dotted {border-style: dotted;}
p.dashed {border-style: dashed;}
p.solid {border-style: solid;}
p.double {border-style: double;}
p.groove {border-style: groove;}
p.ridge {border-style: ridge;}
p.inset {border-style: inset;}
p.outset {border-style: outset;}
p.none {border-style: none;}
p.hidden {border-style: hidden;}
p.mix {border-style: dotted dashed solid double;}
Tejas Naik

tekst w granicy

<fieldset>
  <legend>Login</legend> 
  <table>
    <tr><td>Username</td><td><input type="text"></td></tr>
    <tr><td>Password</td><td><input type="text"></td></tr>
  </table>
</fieldset>
Selfish Skimmer

Odpowiedzi podobne do “tekst w granicy”

Pytania podobne do “tekst w granicy”

Więcej pokrewnych odpowiedzi na “tekst w granicy” w HTML

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu