How do I embeed text-decoration:none inside <head> ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How do I embeed text-decoration:none inside <head> ?

20th Apr 2017, 3:21 AM
Gayuh Marga Hardhika
Gayuh Marga Hardhika - avatar
3 Answers
+ 8
You need to target some elements to be applied this ^^ Assuming you want set it to <a> link elements: <head> <style type="text/css"> a { text-decoration:none; } </style> </head>
20th Apr 2017, 4:05 AM
visph
visph - avatar
0
@visph, it's work, I understand now. thanks a lot bro
20th Apr 2017, 4:54 AM
Gayuh Marga Hardhika
Gayuh Marga Hardhika - avatar
0
<head> <style> id/class{ text-decoration:none; } </style> </head>
24th Apr 2017, 9:59 AM
Ayush
Ayush - avatar