Skip to content Skip to sidebar Skip to footer

Putting Images Inside A Button Element (html & Css)

I have a simple button (as shown below) on which I need to display two pictures, one on either side of the button text. Im battling to create the CSS that will work in both Firefox

Solution 1:

Here is how to do it

The Theory

Block elements (like DIV) although displayed in order of creation, will position themselves adjacent to the previous element or when short of space, on the next line. Because we dont want to give the button a width (we want the button to be automatically sized based on the content of the button) the block elements continued to appear on the next line (see IE8 image in the question above). Using white-space:nowrap forces inline elements (like SPAN and EM) to be displayed on the same line, but is ignored by block elements, hence the solution below.

CSS

button{
    margin: 0px;
    padding: 0px;
    font-family:Lucida Sans MS, Tahoma;
    font-size: 12px;
    color: #000; 
    white-space:nowrap;
    width:auto;
    overflow:visible;
    height:28px;
}

buttonem{
    vertical-align:middle;
    margin:02px;
    display:inline-block;
    width:16px;
    height:16px;
    background-image: url(images/ui-icons_3d3d3d_256x240.png);      
}

buttonem.leftImage{
    background-position: -96px -112px;
}

buttonem.rightImage{
    background-position: -64px -16px;
}

HTML

<button><emclass="leftImage"></em>Button<emclass='rightImage'></em></button>

The Result

Internet Explorer 6, 7, 8 and Firefox 1.5, 2, 3

alt text

Solution 2:

I would use spans not divs for the image containers, since you seem to want the images to appear inline. Using floated divs is just too complex.

In fact, you could probably simplify things further by applying one background image to the button itself, and one to the button-text span, and removing the other two containers altogether.

Another alternative is to simply add the images in as img tags.

Solution 3:

try resetting the button css.

button{
border:none;
background:none;
padding:0;
margin:0;
}

And add a space inside an empty DIV see if it works.

<button><divclass="leftPic">&nbsp;</div><span>Button Text</span><divclass="rightPic">&nbsp;</div></button>

Solution 4:

I think you can strip off the button tag and use a div tag instead.For other button action use javascript onlick() function and use css to change curser on hover(to make it look like button).For my project I used a similar approach.This may help you :)

Solution 5:

I know this is already solved, but just wanted to add that an easy way to put more than 1 image in a button is creating 1 .png with the dimensions of the button you want to create and the to elements together in one file.

Post a Comment for "Putting Images Inside A Button Element (html & Css)"