Jump to content

Ikari

Members
  • Posts

    6
  • Joined

  • Last visited

Posts posted by Ikari

  1. I've been reading over the pages on CSS backgrounds, but I just can't figure out how to make the background repeat on the right! I know 'y' is repeat one line on the left, and 'x' is repeat one line on the top, but I con't find the one to repeat one line on the right.

    background-repeat: no-repeat;ORbackground-repeat: repeat-x;ORbackground-repeat: repeat-y;That helps?
  2. hi! I'm just new to creating webpages and I've been using the internet and some books for reference. But I can't seem to find how to havea split background. by split, what I mean is, for example i want the left side of the page to be black and the other half to be pink. is this possible? I really appreciate your help! :)

    make a two new div layers with "z-index: -10" and "width: 50%" other is floating left and other is floating right. Then just put the right background colors. I thik it would work.
  3. I would like to show an image at the bottom right of my page.  The following method works fine until the content gets too big.position: absolute;bottom: 20px;right: 20px;If there is enough content to fill the window, the image is then shown inside the content.  Is there any way to edit the CSS so that the image will show in the bottom right of the window but not show inside the content if there is enough of it?

    Make a new div top layer (z-index: 10) with 100% width and 100% height. Then put an image to its background and set image's position to bottom left. I think it works.
  4. Gosh.. I looked right over your links!!!...Anyways... is there any reason you have this on your stylesheet?:
    Is there a ... problem with them..? Or...?
    ...
    So could Firefox ignore invidual <td> style because of uniform style assigned to them?EDIT*Damn! I tested a bit, and yes! That's the problem. The td { } overrides all other td.xxx { } styles.Now I wonder that why? It shouldn't do that. Opera does that too.. anyone have used othes browsers?td { } doesn't have to be there, I could insert thesebackground-repeat: no-repeat;background-attachment: fixed;font-size: 10px;color: #484848;to invidual styles....But still FF (and Opera now) bugs me because it's not working very well.
×
×
  • Create New...