+ 3
Please help me
I have several pictures in my web page and I want when the user hover over them a message will be printed How can I do it in css
1 Answer
+ 3
I do not know what you mean printed but you can show a message for example as follows:
div {
display: none;
}
span:hover + div {
display: block;
}