Skip to main content

Cascading Style Sheets (CSS) Properties for HTML elements

CSS properties are used to control the visual display of the html elements. The following are generally used properties to html documents.

 Properties:

    border
    border-collapse
    border-color
    border-spacing
    background
    background-color
    border-style
    border-bottom
    border-left
    border-top
    border-right
    background-image
    background-repeat
    border-top-color
    border-right-color
    border-bottom-color
    min-height
    min-width
    max-height
    max-width
    border-left-style
    border-top-width
    border-right-width
    border-bottom-width
    border-left-width
    border-width
    bottom
    direction
    display
    elevation
    border-left-color
    border-top-style
    border-right-style
    border-bottom-style
    font-size-adjust
    font-stretch
    font-style
    font-variant
    font-weight
    empty-cells
    float
    font
    font-family
    font-size
    height
    left
    orphans
    outline
    outline-color
    outline-style
    list-style-image
    list-style-position
    z-index
    padding
    padding-top
    padding-right
    padding-bottom
    letter-spacing
    line-height
    list-style
    list-style-type
    margin
    margin-top
    margin-right
    margin-bottom
    margin-left
    marker-offset
    marks
    padding-left
    text-align
    text-decoration
    text-indent
    text-shadow
    text-transform
    top
    unicode-bidi
    vertical-align
    visibility
    voice-family
    volume
    white-space
    outline-width
    overflow
    widows
    width
    word-spacing
   

Popular posts from this blog

List of software companies in Chennai

List of software companies in Chennai India's Information technology is an industry consisting of IT services and business process outsourcing(BPO). In india information technology is playing an important role, IT sector in India is generating more than 3 million employment. IT & ITeS industry in India has grown enormously. Indian Information Technology has made a mark in the world. Many MNC's are started branches in Indian cities like Bangalore, Chennai, Delhi etc,. The below table shows you list of software companies in Chennai. 4i Apps Solutions Pvt Ltd http://www.4iapps.com Abra Technologies http://www.abratechnologies.com Accel Frontline Ltd http://www.accelfrontline.in Adrenalin eSystems Ltd http://www.myadrenalin.com Akmin Technologies Pvt Ltd http://www.akmin.com American Megatrends India Pvt Ltd http://www.amiindia.co.in Anantara Solutions Pvt Ltd http://www.anantsol.com Arrowpoint Technologies Pvt Ltd http://www.arrowpointtechn...

HTML Unorder list example for beginers

HTML Unorder list is very very important concept in html, with ul, li tags we can produce list of contents with css styles. In html unorder list is used for menus, navigation and some others designs. HTML Unorder list example : <html>   <head>     <title>Welcome to Fresherstarget</title>     </head>   <body>     <ul>       <li>First List</li>       <li>Second List</li>       <li>Third List</li>       <li>Fourth List</li>     </ul>   </body> </html> The above html unorder list example program is best one for beginers I hope it'll helpfull for you Thanks, If any doubts comment here..

How to use HTML textbox, buttons, checkbox and radio buttons ?

HTML is easy to learn here we are going to create textbox, buttons, checkbox and radio buttons for beginers. In Freshers Blog we gave many example for html programs. Generally textbox, buttons, checkboxs and radio buttons these components will help you to create interactive registration form. Example for textboxs, checkboxs bellow, <html>   <head>     <title>Welcome to Fresher Blog</title>     </head>   <body>     <input type="text" name="text1" ></input>     <input type="checkbox" name="checkbox1">Checkbox 1</input>     <input type="radio" value="Radio">Radio 1</input>     <input type="submit" value="Freshersblog"></input>   </body> </html> The above example beginners can learn html more quickly and easily. Thanks.