CSS Question | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 4

CSS Question

body { background-image:url("sample.png"); background- :repeat-x; } a:hover { text- :underline; color: #000000; : crosshair; }

17th Nov 2017, 3:51 PM
DREW FRIEDMAN
DREW FRIEDMAN - avatar
3 Answers
+ 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 }
17th Nov 2017, 4:49 PM
Cool Codin
Cool Codin - avatar
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
29th Feb 2020, 7:44 PM
Faahim Sadman
Faahim Sadman - avatar
- 2
What’s your question actually?
17th Nov 2017, 3:59 PM
Ole113
Ole113 - avatar