Text, Images, Links, Tables

 

Text css

·     The color property is used to set the color of a text.

·     The direction property is used to set the text direction.

·     The letter-spacing property is used to add or subtract space between the

·     letters that make up a word.

·     The word-spacing property is used to add or subtract space between the words of a sentence.

·     The text-indent property is used to indent the text of a paragraph.

·     The text-align property is used to align the text of a document.

·     The text-decoration property is used to underline, overline, and strikethrough text.

·     The text-transform property is used to capitalize text or convert text to uppercase or lowercase letters.

·     The white-space property is used to control the flow and formatting of text.

·     The text-shadow property is used to set the text shadow around a text.

Images

·      The border property is used to set the width of an image border.

·      The height property is used to set the height of an image.

·      The width property is used to set the width of an image.

·      The -moz-opacity property is used to set the opacity of an image.

<img style=”border:0px;” scr=”/images/css.gif” />


Links

·     The :link signifies unvisited hyperlinks.

·     The :visited signifies visited hyperlinks.

·     The :hover signifies an element that currently has the user's mouse pointer hovering over it.

·     The :active signifies an element on which the user is currently clicking.

<style type=”text/css”>

a:link {color : #00000}

a:visited {color : #00000}

a:hover {color: #00000}

a:active {color: #00000}

</style>

 

Tables

border-style:dotted;

 border-width:3px;

 border-color:#000000;

 padding: 10px;

border-collapse

border-spacing

caption-side

empty-cells

table-layout

Comments

Popular posts from this blog

Element