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 :: how to create a semi circle in css 
Css :: how to make gradient backgroud cover whole page in html 
Css :: how to make border blur css 
Css :: css disabled div 
Css :: fixe a navbar at the top 
Css :: change input border color when selected 
Css :: console.log with color font 
Css :: css change text 
Css :: make all images same size css 
Css :: css change image color 
Css :: tzutc 
Css :: change size of bullet point css 
Css :: css smooth text shadow 
Css :: universal css 
Css :: center in grid 
Css :: boostrap pointer 
Css :: css ios disable zoom 
Css :: vertical text 
Css :: icon inside a circle css 
Css :: how to fix stylelint errors 
Css :: how to make a square div in css 
Css :: css detect mobile 
Css :: ngclass multiple conditions 
Css :: rgba white color 
Css :: scss light color 
Css :: box shadow border 
Css :: css edit scroll bar 
Css :: space between li css 
Css :: css regions 
Css :: how to add inline class to a paragraph in css 
ADD CONTENT
Topic
Content
Source link
Name
4+6 =