Search
 
SCRIPT & CODE EXAMPLE
 

CSS

text border css

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

css text border

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

put an border around an text in 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;
Comment

css text border

p{
  border: 1px solid #f00;
  /* 
    ShortHand 
    border: border-width border-style border-color
  */
}
Comment

Add border to text - Css

.class{
	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;
}
Comment

text in border

<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>
Comment

PREVIOUS NEXT
Code Example
Css :: stop the client from scrolling 
Css :: li only showing first bullet 
Css :: font awesome eyes 
Css :: how to center an element in css 
Css :: css cut text of 
Css :: flex direction 
Css :: input placeholder css 
Css :: apply style to second child div 
Css :: css thinner hr 
Css :: comentarios en css 
Css :: rgb gold 
Css :: center with flex 
Css :: loops scss 
Css :: half border bottom 
Css :: souligner titre css 
Css :: center tecxt css 
Css :: div class sr-only 
Css :: convert image in rounshape in css 
Css :: remove border svg 
Css :: html how to indent text 
Css :: move element in front of another css 
Css :: background opacity css hex 
Css :: for in sass 
Css :: css vw scrollbar 
Css :: change color when you mouse over a link (hover) 
Css :: hide overflow but still scroll 
Css :: best box shadow 
Css :: css grid auto width 
Css :: css animation top goes back to start 
Css :: how to use purgecss with webpack mix laravel 
ADD CONTENT
Topic
Content
Source link
Name
9+7 =