0
How do I embeed text-decoration:none inside <head> ?
3 Réponses
+ 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>
0
@visph, it's work, I understand now. thanks a lot bro
0
<head>
<style>
id/class{
text-decoration:none;
}
</style>
</head>