Results 1 to 4 of 4

Thread: CSS Property For IMG

  1. #1
    Join Date
    Nov 2008
    Posts
    73

    CSS Property For IMG

    What are different image property of CSS Style? I want to cerate web page which display image in center and there are two to three images which display at bottom of the page.

  2. #2
    Join Date
    May 2008
    Posts
    2,297

    Re: CSS Property For IMG

    To set background image :
    Code:
     {
    background-image:
    url("")
    }
    </style>
    To set background color :
    Code:
    h3 {background-color: transparent}
    p {background-color: rgb(255,0,240)}
    </style>

  3. #3
    Join Date
    Jan 2009
    Posts
    199

    Re: CSS Property For IMG

    list-style-image : Selects a specific image to serve as a bullet in front of list items.The list-style-image property replaces the list-item marker with an image.
    Code:
    ul
    {
    list-style-image:url("/images/webl.gif");
    list-style-type:rectangle;
    }

  4. #4
    Join Date
    Dec 2008
    Posts
    177

    Re: CSS Property For IMG

    It will display image in background as horizontally.
    Code:
    <style type="text/css">
    body
    { 
    background-image: 
    url("");
    background-repeat: repeat-x
    }
    </style>
    This will display static background image :
    Code:
    <style type="text/css">
    body 
    {
    background-image: 
    url("/images/web.gif");
    background-repeat: 
    no-repeat;
    background-attachment: 
    fixed
    }</style>

Similar Threads

  1. What is a Java property category?
    By Viensterrr in forum Software Development
    Replies: 4
    Last Post: 22-01-2010, 10:41 PM
  2. Help needed in C# for Invoking a Property
    By Deabelos in forum Software Development
    Replies: 4
    Last Post: 19-01-2010, 07:33 PM
  3. SelectionObject property
    By rooki in forum Software Development
    Replies: 3
    Last Post: 30-11-2009, 10:05 PM
  4. Property reading problem in MSI
    By Joko in forum Software Development
    Replies: 4
    Last Post: 12-06-2009, 11:59 AM
  5. Default property of datacontrol
    By Pooja in forum Software Development
    Replies: 2
    Last Post: 28-02-2009, 06:18 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,750,284,866.12510 seconds with 16 queries