DimitriDeChef Posted January 7, 2020 Report Posted January 7, 2020 Hello everyone..... I got one very weird issue when I wrote some HTML code by using Dreamweaver CC2018 - that 'hover' selector didn't work ,here's my code: --------------------------------------------------------------------------------------------------------------------------------- <!doctype html> <html> <head> <meta charset="utf-8"> <title>Issue Example</title> </head> <style> .block1{ width:50px; height:50px; background-color: aqua; } .block2 { width:50px; height:50px; background-color: red; display: none; } .block1:hover.block2{ display: block; } </style> <body> <div class="block1"></div> <div class="block2"></div> </body> </html> --------------------------------------------------------------------------------------------------------------------------------- This problem almost made me go beserk ....Sorrry for my poor english...Please help me, point out where is the problem here,Thanks a lot. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.