Can anyone tell me how to disable web pages by using CSS?
Not sure, but if you mean the user should only see the content and not click anywhere You can create an overlay with CSS:
#overlay {status: complete; Top: 0; Left: 0; Width: 100%; Height: 100%; Background: #fff; Opacity: 0.1; Filters: alpha (opacity = 10); } This CSS will apply the overlay to the entire screen, however, if you want to do this in a certain part, then you need to adjust the values of these properties:
Top: 0; Left: 0; Width: 100%; Height: 100%;
Comments
Post a Comment