<div>Divide your content, adding specific styles to specific divisions. Group together tables, paragraphs, or headings allowing alterations of groups of different tags at once. For example, changing the language attribute of a <div> tag will alter the language of all tags within the div. Attribute | Description | align | Horizontally align various tags or content. | class | Classify or name your elements. For instance, if you classify several paragraph elements the same name, using CSS it is possible to give them all the same styles in one line of code. | dir | Change the display of text from left to right, or right to left. Very useful in language translation. | lang | Define the language to display your element in. Here's a link to the abbreviations of languages. http://www.oasis-open.org/cover/iso639a.html | height | Define an element's height using a numeric pixel value or a percentage. | id | Specify an ID for your elements. | nowrap | Refuses any form of word wrapping for the element. | style | Used to create inline styles such as CSS. | title | Places a "pop-up" title for an element upon mouse over. Similar to "help" pop-ups in word programs. | valign | Vertically align an element. | width | Define the width of an element with a numeric pixel value or a percentage. |
Code:
<div height="50" width="100" align="right" valign="top">
Upper right content goes here</div>
Display:
Upper right content goes here |