1/* You have 2 options
2 The first is experimental */
3
4/* text-stroke */
5#example {
6 font-size: 1em;
7 -webkit-text-stroke: 1px #000000;
8}
9
10/* Use 4 shadows
11 Probably best to use this until the above is standardised */
12#example {
13 font-size: 1em;
14 text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
15}
1.TEXT:hover{
2 -webkit-text-stroke-width: 1px; /* 1px Stroke */
3 -webkit-text-stroke-color: #ffffff; /* White Color */
4 transition: 1s /* Displays in 1 Second */
5}
1section .title h3
2{
3 font-weight: 500; /* ( optional ) */
4 -webkit-text-stroke: 0.8px #8d8d8d !important; /* ( stroke weight + color ) */
5}