vwf ha scritto:
> Hello,
>
> I want to make a list of clickable images (button-bar). 
> The images are of unequal size, and I want to spread them evenly over
> the width of the bar (spread the centres of the images evenly). 
> Is there a trick to do this? Using a table, this is rather easy, but my
> attempts were unsuccessful so far.
>   
Hi, vwf,

well, you're talking about a button bar, so I suppose they're never too 
large.
Thus i think you can use a <ul>, defining with a fixed width for <li>s 
equal to the maximum width of the images, or greater, if you want some 
space between them. Unfortunately you have to know the size of the 
buttons to use this technique.

ul {
  list-style-type: none;
}


li {
  display: inline;
  width: 100px; /* or whatever you need */
}

Hope this is of help
Ele
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to