Color of border | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 1

Color of border

Is there any way I can change the border color from black(default) to other colors?

12th Jun 2018, 1:19 PM
sumi
sumi - avatar
4 Respostas
+ 8
Yes, you can. Example:šŸ˜‰ border: 2px solid #00FF00 https://code.sololearn.com/WuAXBJlSQ6n4/?ref=app
12th Jun 2018, 1:25 PM
Muhd Khairul Amirin
Muhd Khairul Amirin - avatar
+ 3
if you want to alter existing border color only, you can use border-color. eg. .box { border: 2px black solid; } .box { border-color: red; }
12th Jun 2018, 4:16 PM
CalviÕ²
CalviÕ² - avatar
+ 2
Use the border-style element in CSS. :)
12th Jun 2018, 1:27 PM
Tony
Tony - avatar
+ 1
thanks šŸ˜‡
12th Jun 2018, 1:47 PM
sumi
sumi - avatar