Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Newbie background position

Status
Not open for further replies.
Aug 2, 2002
28
GB
Hi

I seem to be struggling with the background-position element and I am now starting to pull my hair out!

I have a container and within that I have another element with an image which I would like to appear at the bottom right of the container.


CSS

.container
{
width:146px;
height:250px;
float:left;
margin: 0px 0px 0px 0px;
}

.button-sml
{
background-image:(images/generic/button_sml.gif);
background-position: right bottom;
background-repeat: no-repeat;
width:122px;
height:21px;
text-align:right;
}

.colpadding
{
padding: 0px 0px 0px 10px;
}

HTML


<div class="container">
<div class="colpadding">
<div class="button-sml"><a href="#">More</a></div>
</div>
</div>

Any help would be most appreciated.

Thank you.
 
Can you explain what exactly you want? If you just want your background at the bottom of your container, then add your background information to the container, not the button-sml class. Furthermore, what is the deal with the .colpadding element? You can simply apply the padding to container and you will end up with the same result without the use of additional element.
 
Hi Vragabond,

Basically I would like a box with a button in the bottom right-hand corner. Please see
Following your last post I have realised what I was doing wrong regarding the background-position.

In respect of the colpad, I have different columns that need different padding set against them. Im sure there is probably an easier way to do this??

My problem now is aligning the text up against the bottom of the container to sit over the background image. Any ideas again?

Thank you.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top