ie button support
January 9th, 2008ie doesn’t support the
ie doesn’t support the
NOTE: ‘position:relative’ and ‘z-index:num’ to fix IE6 issue displaying the image over the content div.
<style>
#container {
background: url(tile.gif) repeat-y top left;
width: 600px;
margin: 30px;
}
#container #top {
display: inline;
float: left;
background: url(top.jpg) no-repeat top left;
width: 600px;
height: 100px;
}
#container #content {
position: relative;
display: inline;
float: left;
z-index: 100;
margin: -100px 25px -100px 25px;
}
#container #bottom {
position: relative;
display: inline;
float: left;
z-index: 1;
background: url(bottom.jpg) no-repeat top left;
width: 600px;
height: 100px;
}
</style>
<div id="container" class="clearfix">
<div id="top"></div>
<div id="content">content goes here</div>
<div id="bottom"></div>
</div><!-- END CONTAINER -->
This soultion used a very tall background image that faded to a background color. A vertical “sliding doors” techinique. Also, note the background image is ‘bottom left’ to fix the image to the bottom of the element so as the content expands more of the image is revealed at the top. This is very similar to the above solution.
<style>
#container {
width: 300px;
}
#content {
display: inline;
float: left;
background: color url(container.jpg) no-repeat bottom left;
}
#bottom {
display: inline;
float: left;
background: url(bottom.jpg) no-repeat bottom left;
width: 300px;
height: 10px;
}
</style>
<div id="container" class="clearfix">
<div id="content">content goes here</div>
<div id="bottom"></div>
</div><!-- END CONTAINER -->
A list of sites with tutorials on Photoshop painting:
Susan L. Smith, Associate Designer, in HOW Magazine, April 2007:
The more I accept that inspiration is elusive, the less I go looking and the more I simply wait for it to find me. Sometimes, we look so hard for something that we miss it. So I’m learning to be OK with the unanswered and the unpredictable and the inconsistent. I’ve realized that sometimes asking questions is more inspiring than having all the answers.
Beautiful Web Design article.
Create more depth in your images with a split toning effect. Similar to sepia, but could be creative with it as well.