+ 5
How to create a valid email link...dispayed without an underline?
14 odpowiedzi
+ 20
<a href=""
Style="text-decoration:none;">
</a>
+ 5
I think SoloLearn provides an opportunity to get into the wading pool to get your feet wet, but w3schools is better for some actual swimming. Eventually, one runs into issues better answered by Stack Overflow or the specifications for the languages themselves. By the time you are looking at proposals, for language features that haven't come out yet, that's trained athlete swimmer type stuff. (Triathlete anyone? 😉)
Incidentally, css-tricks.com is a good next-level resource for CSS.
+ 4
Style have really a lot of attributes , but i guess you mean text decoration for the links , you can use thos fe :
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: underline;
}
+ 4
:link (etc.) are pseudo-classes (not attributes). Just making a technical distinction.
The chart here lists attributes that are specific to the anchor element:
https://www.w3schools.com/tags/tag_a.asp
Remember that there are global attributes too, in addition to this list.
+ 3
<a href="mailto:abc@abc.com" style="text-decoration:none">
send</a>
+ 3
Janning thanks...uve been really helpful to me
+ 2
Janning thanks...uve been really helpful to me
+ 2
I have the w3schools app...but I've been afraid to read their material to avoid confusion...but now I'm convinced I might have to go there to learn things that were not fully explained in lessons here such as this
+ 1
Which other attributes can be used to style ?
Can give me a list of possible attributes?
+ 1
Thanks for ur reply😉
+ 1
a:link{
text - decoration: none ;
}
+ 1
STAFF DRUGS + Xasan Xidig ,
Seems like you want to have a conversation. 😊 If so, there's a Messaging feature in the Notifications area if you are both on the Android version. You should go check it out. 😁
If you have something relevant to contribute to this thread, we welcome it.
Otherwise, please refrain from hijacking the thread with spam.
I how you understand. 🙂
0
Hi
0
hi