- 4
CSS Question
body { background-image:url("sample.png"); background- :repeat-x; } a:hover { text- :underline; color: #000000; : crosshair; }
3 ответов
+ 4
CSS Answer
body {
background-image:url("sample.png");
background-repeat:repeat-x; //repeat
}
a:hover
{
text-decoration:underline; //decoration
color: #000000;
cursor: crosshair; //cursor
}
0
CSS Answer
body {
background-image:url("sample.png");
background-repeat:repeat-x;
}
a:hover
{
text-decoration:underline;
color: #000000;
cursor: crosshair;
}
Answer: Repeat, decoration, cursor
- 2
What’s your question actually?