+ 14
Can we apply text border ?
hello guys, I am not able to apply text border like as any div border. I apply text shadow but it's not need. I will apply text border anyone help me ?
5 Respostas
+ 12
do smth like this:
CSS:
h1 {
color: yellow;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
HTML: <h1>Hello World</h1>
+ 11
other method ?
0
@gopal you can not add text-shadow with PHP, it's not what php does. You would need CSS to add text-shadow. CSS transform how html elements appear, client-side (= in the browser), whereas php manipulates and prints data, server side (= before it appears in the browser).
- 1
Plz Tell Me How To Add Text Shadow In Php
- 2
:)