Showing posts with label Basic CSS. Show all posts
Showing posts with label Basic CSS. Show all posts

Friday, 31 May 2013

0

Diffrernt text Decoration In CSS

  • Friday, 31 May 2013
  • able
  • <html>
    <head>
    <style type="text/css">
    h1 {text-decoration: overline}
    h2 {text-decoration: line-through}
    h3 {text-decoration: underline}
    h4 {text-decoration: blink}
    a {text-decoration: none}
    </style>
    </head>

    <body>
    <h1>This is header 1</h1>
    <h2>This is header 2</h2>
    <h3>This is header 3</h3>
    <h4>This is header 4</h4>
    <p><a href="../default.asp.htm">This is a link</a></p>
    </body>

    </html>
    Read More
    0

    In CSS How To Repeat a Background Image Only Vertically and Horizontally

  • able

  • How to repeat a background image only vertically
    <html>
    <head>

    <style type="text/css">
    body
    {
    background-image:
    url('bgdesert.jpg');
    background-repeat: repeat-y
    }
    </style>

    </head>

    <body>
    </body>
    </html>

     How to repeat a background image only horizontally

    <html>
    <head>

    <style type="text/css">
    body
    {
    background-image:
    url('bgdesert.jpg');
    background-repeat: repeat-x
    }
    </style>

    </head>

    <body>
    </body>
    </html>
    Read More

    Download

    Subscribe