answersLogoWhite

0

Examples:

span.raise { vertical-align: super; }

span.lower { vertical-align: sub; }

selector_name.raise { vertical-align: super; }

selector_name.lower { vertical-align: sub; }

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

How do you display hyperlinks without an underline in CSS?

To remove an underline from a hyperlink in CSS you have to use text-decoration and set it to none. An example is below: a {text-decoration: none;} a:hover {text-decoration: underline;}a {text-decoration:none}


What is the safest way to display text to avoid conflicts with CSS?

Use <pre> tags.


How can you hide your gifts on hi5?

<style type="text/css"> #gifts, #gifts + div {display: none} </style>


How do you superscript text in word with control keys?

To superscript text in Microsoft Word using keyboard shortcuts, highlight the text you want to format and then press "Ctrl" + "Shift" + "+". This will convert the highlighted text into superscript. To revert back to normal text, simply repeat the same shortcut.


How do you hide things with CSS?

I hope this what you mean; I will cut and paste part of one of my sites that are printer CSS: body { background: #fff; color: #000; font-family: "Times New Roman", serif: font-size: 12pt; } a { text-decoration: underline; } #head { text-align: center; } #pagetitle { display: block; } #left, #foot img { display: none; } div#head img { display: none; } p.unseen { display: none; }


What determines the color of the text as it appears on the screen?

The color of text on a screen is determined by the CSS styling applied to the text element. This styling can include specific color codes (hexadecimal, RGB, or color names) or color properties like color: red; in the CSS file or inline styles. The browser interprets this styling to display the text in the specified color.


How can you disable clicks with CSS?

You don't disable clicks with CSS. That takes a more active language like JavaScript, JQuery, Ajax, PHP, etc.. You can hide any text/image link those with one of these CSS properties: visibility: hidden; display: none;


What does HTML use to tell a browser how to display text?

HTML doesn't actually tell a browser how to display text. Rather, HTML tells the browser the structure of a document. CSS (Cascading Style Sheets) is the language used to tell the browser how that information should be displayed. In lieu of that, most browsers will add default formatting through CSS to plain HTML.


Which HTML attribute is used to define an inline styles?

<style type="text/css"></style>


How do you superscript with MacBook air?

To superscript text on a MacBook Air, you can use the keyboard shortcut by selecting the text you want to superscript and then pressing Command + Shift + + (the plus key). Alternatively, in applications like Pages or Microsoft Word, you can highlight the text, go to the Format menu, select Font, and then choose "Baseline" to select "Superscript."


What is the CSS property color text?

To define the color of the text w/ CSS, it is {color:[color of text];} Ex.: body{color:#0000ff;}


How do you indent the first line of a text css?

Use CSS text-indent property. Simple example here: p{ text-indent: 20px; }