|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Full size Image as Background??
Is it possible to make a full size image a background of (say) a cell which is the same size as the image itself.
I would like to make a cell that is 540X125 and have an image the same size be the bg so that I can add things on top without ever having the image fill out the cell if at all the cell size changes. Another way I can put this question is: Is it possible for me to have a single image as a background of a bigger table cell without having the pic filling and covering the whole table cell with itself? Thanks! |
|
#2
|
||||
|
||||
|
yep, you can
![]() I suggest you use CSS to do it... the css may go like; Code:
<style type="text/css">
<!--
.background
{
text-align: left;
background-attachment: fixed;
background-image: url(http://www.wnas.nl/images/bg_bike.gif);
background-repeat: no-repeat;
background-position: 20px 20px;
vertical-align: top;
}
-->
</style>
And attach it to a cell like this, Code:
<td width="200" height="400" class="background">Content stuff<br /> here</td> I hope it helps, if not please post again, I may not have understood the question correctly ![]() |
|
#3
|
|||
|
|||
|
Thank you for replying!
I have never used css but I believe I just put that code in the <head> of my doc and call it as you specified in the <td>; is that it? Basically what I was trying to achive is have some text or other graphics appear over a header. Please check it over here www.ariseuganda.org/over.htm please advise is this will remain stable because if for some reason it behaves differently things can look really ugly. There, p'se notice that the blue header actually appears as a bg and that stuff on top of it is actually content in the cell. That is the kind of concept I want to use. Thanks for your help. |
![]() |
| Viewing: Dev Shed Forums > Web Design > Web Design Help > Full size Image as Background?? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|