- 8
Make the cursor to appear as crosshair as all the link on a web page
Plzz help
11 Answers
+ 13
a {
cursor: crosshair;
}
+ 6
/*a for a links, :hover when mouse hover */
a:hover {
/* change cursor to crosshair */
cursor: crosshair;
}
+ 4
Yes it is CSS code that either goes in CSS file or <style> </style> tags in HTML file.
As far as one word or symbol is concerned, I am not sure what you mean but I will try give answer
if you use
a : hover {/*your css code */}, it will apply to all links, <a href="xxx" > </a>
.className : hover {/*css code */}, it will apply to all elements of class "className", this class name can be any thing you want.
#idName : hover {/*css code*/}, it will apply to all elements of id "idName", this id name can be any thing you want.
If you still don't get your answer please clarify your question.
+ 4
a{
cursor: crosshair;
}
+ 1
the answer:
Make the cursor appear as a crosshair on all links of the web page:
a
{
cursor
:
crosshair
;
}
+ 1
a
{
cursor
:
crosshair
;
}
+ 1
Make the cursor appear as a crosshair on all links of the web page:
a
{
cursor
:
crosshair
;
}
0
a{
cursor: crosshair;
}
- 1
Bro it's css tutorial if u can help
- 1
Actually I need a one word or simble to idestify the content.
Or then
- 1
Yes it is CSS code that either goes in CSS file or <style> </style> tags in HTML file.
As far as one word or symbol is concerned, I am not sure what you mean but I will try give answer
if you use
a : hover {/*your css code */}, it will apply to all links, <a href="xxx" > </a>
.className : hover {/*css code */}, it will apply to all elements of class "className", this class name can be any thing you want.
#idName : hover {/*css code*/}, it will apply to all elements of id "idName", this id name can be any thing you want.
If you still don't get your answer please clarify your question.
Answer would be : a, cursor, crosshair