How to make a div 100% height of the browser window

There are a couple of CSS 3 measurement units called: Viewport-Percentage (or Viewport-Relative) Lengths What are Viewport-Percentage Lengths? From the linked W3 Candidate Recommendation above: The viewport-percentage lengths are relative to the size of the initial containing block. When the height or width of the initial containing block is changed, they are scaled accordingly. These units are vh (viewport … Read more

Can I apply a CSS style to an element name?

You can use the attribute selector,  Run code snippetExpand snippet Be aware that it isn’t supported in IE6. Update: In 2016 you can pretty much use them as you want, since IE6 is dead. http://quirksmode.org/css/selectors/ http://reference.sitepoint.com/css/attributeselector

Is there a vr (vertical rule) in html?

No, there is no vertical rule. EDIT: It’s 2021 (twelve years after I answered this question), and I no longer think my original explanation is true: (original explanation) It does not make logical sense to have one. HTML is parsed sequentially, meaning you lay out your HTML code from top to bottom, left to right … Read more

Display text on MouseOver for image in html

You can use title attribute. You can change the source of image as you want. And as @Gray commented: You can also use the title on other things like <a … anchors, <p>, <div>, <input>, etc. See: this