Re: [css-d] transparencies

2008-07-12 Thread Marshal Horn
On Fri, Jul 11, 2008 at 9:39 PM, Philippe Wittenbergh <[EMAIL PROTECTED]> wrote: > > [quote] > The uniform opacity setting to be applied across an entire object > [/quote] > In other words, 'opacity' is applied to an _entire_ element (border, > background, foreground) and all its descendants. And n

Re: [css-d] transparencies

2008-07-12 Thread Philippe Wittenbergh
On Jul 12, 2008, at 4:03 PM, Marshal Horn wrote: > On Fri, Jul 11, 2008 at 9:39 PM, Philippe Wittenbergh <[EMAIL PROTECTED] > n.com> wrote: >> >> [quote] >> The uniform opacity setting to be applied across an entire object >> [/quote] >> In other words, 'opacity' is applied to an _entire_ elemen

Re: [css-d] transparencies

2008-07-12 Thread Bill Brown
Marshal Horn wrote: > Well, that makes sense. However, it seems both Safari and Firefox are > then displaying it incorrectly. > I have an untitled list with a semitransparent background, and the > contained list items should be fully opaque (though they have no > background, they have text). The

[css-d] border-spacing and IE

2008-07-12 Thread J.C. Johnson
>From everything I can find, border-spacing is still not supported by IE, correct? Is there a workaround for this that allows for different vertical and horizontal spacing? (The goal is for there to be spacing between table rows, but not between table cells within a row.) The css I've got (workin

Re: [css-d] transparencies

2008-07-12 Thread Bill Brown
Marshal Horn wrote: > Well, that makes sense. However, it seems both Safari and Firefox are > then displaying it incorrectly. > I have an untitled list with a semitransparent background, and the > contained list items should be fully opaque (though they have no > background, they have text). The

Re: [css-d] border-spacing and IE

2008-07-12 Thread Jukka K. Korpela
J.C. Johnson wrote: > From everything I can find, border-spacing is still not supported by > IE, correct? Correct. > Is there a workaround for this that allows for different > vertical and horizontal spacing? The simplest workaround I can figure out is to use extra markup within each cell, set

[css-d] CSS2 child selector not working IE7

2008-07-12 Thread Byomokesh Sahoo
Hi All, I am using IE7 but facing view problems. I saw one article http://msdn.microsoft.com/en-us/library/bb250496.aspx (child selector is support in IE7). I tried that but not showing yet. I think its not implemented. My XML title text title text> section title text here I want all t

[css-d] USS: Unidentifiable small space

2008-07-12 Thread Kim Brooks Wei
Hello People! I have a small space at the bottom of the bounding box for this page's content. I can't see what's causing it. Help appreciated as always. http://thewei.com Kimi -- This email sent by Kimi Wei http://thewei.com 201-475-1854 __

Re: [css-d] USS: Unidentifiable small space

2008-07-12 Thread David Laakso
Kim Brooks Wei wrote: > Hello People! > > I have a small space at the bottom of the bounding box for this > page's content. I can't see what's causing it. Help appreciated as > always. > > http://thewei.com > > Kimi > > img { display:block; } Clyde -- http://chelseacreekstudio.

Re: [css-d] USS: Unidentifiable small space

2008-07-12 Thread Peter Hyde-Smith
- Original Message - From: "Kim Brooks Wei" <[EMAIL PROTECTED]> To: "CSS Discuss" Sent: Saturday, July 12, 2008 12:46 PM Subject: [css-d] USS: Unidentifiable small space > Hello People! > > I have a small space at the bottom of the bounding box for this > page's content. I can't see wh

Re: [css-d] Opera sees content and draws a scrollbar, others ok

2008-07-12 Thread Rick Lecoat
On 12 Jul 2008, at 08:41, Ingo Chao wrote: > ok, did you try > > a .extraLinktext { > position: absolute; > left: -999em; > top:-999em; > } > a:focus .extraLinktext { > position: relative; > left: 0; > top:auto; > } > That seems to quit the scrollba

Re: [css-d] ul li unordered lists list level indent control II

2008-07-12 Thread Barrett
On Jul 6, 2008, at 5:25 PM, Jens Nedal wrote: > Barrett wrote: >> What do you think about controlling a list levels as seen by the >> enduser in browser with css padding ? >> I just contemplated this while wrangling with some server side code >> SNIP >> >> .firstlevel {padding-left: 1em;} >> .se

[css-d] test ignore

2008-07-12 Thread Barrett
Thanks, Barrett AOL/AIM handmadepaperus __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Su

Re: [css-d] USS: Unidentifiable small space

2008-07-12 Thread christopher
On Sat, 12 Jul 2008 13:50:13 -0400 David Laakso <[EMAIL PROTECTED]> wrote: > Kim Brooks Wei wrote: > > Hello People! > > > > I have a small space at the bottom of the bounding box for this > > page's content. I can't see what's causing it. Help appreciated as > > always. > > > > http://thewei.co

[css-d] Fwd: ul li unordered lists list level indent control II

2008-07-12 Thread Barrett
> > On Jul 6, 2008, at 5:25 PM, Jens Nedal wrote: > >> Barrett wrote: >>> What do you think about controlling a list levels as seen by >>> the >>> enduser in browser with css padding ? >>> I just contemplated this while wrangling with some server side code >>> SNIP >>> >>> .firstlevel {padding-l

Re: [css-d] border-spacing and IE

2008-07-12 Thread J.C. Johnson
Well, that's just not fair. ;-) It seems like such a very simple thing that I'm surprised to find that there's not a clean solution for IE. This is a table with unknown number of rows (database driven), each row consisting of 5 cells. Having to add extra markup, as you suggest to each cell is pro

Re: [css-d] CSS2 child selector not working IE7

2008-07-12 Thread Marshal Horn
On Fri, Jul 11, 2008 at 11:09 PM, Byomokesh Sahoo <[EMAIL PROTECTED]> wrote: > My CSS File. > > article, book { >margin:.5em; > } > > book>title, article>title { >font-size:xx-large; >text-align:center; >border-bottom-style:solid; > } > > sect1 > title { >font-size:medium; >

Re: [css-d] transparencies

2008-07-12 Thread Marshal Horn
Ah! After making an example to show you what I meant, I finally realized it. An opacity of, say, .75 would make a list and all its items partially transparent and show the body's background (assuming the list is the direct descendant of the body). An opacity of .75 on the list items would make the

Re: [css-d] transparencies

2008-07-12 Thread Marshal Horn
On Sat, Jul 12, 2008 at 8:28 PM, Marshal Horn <[EMAIL PROTECTED]> wrote: > Ah! > After making an example to show you what I meant, I finally realized it. > An opacity of, say, .75 would make a list and all its items partially > transparent and show the body's background (assuming the list is the >

Re: [css-d] border-spacing and IE

2008-07-12 Thread J.C. Johnson
And of course there's another problem with using a div inside a td, and applying the border to the div. The height of the content of each cell in the row varies. Some have one line, some two lines, some three lines of content. The table row takes whatever height it needs to take to accommodate the

[css-d] form Submit button getting pushed outside of div

2008-07-12 Thread Kelly Moore
I have a submit button that is getting pushed to an outer div. I would like it to stay within the div which contains the rest of the form. Here is what is happening: http://yakmaster.net/test/floating_submit.html I've added a border to the divs so it's clear what is happening. any ideas? _

Re: [css-d] form Submit button getting pushed outside of div

2008-07-12 Thread Bill Brown
Kelly Moore wrote: > I have a submit button that is getting pushed to an outer div. I > would like it to stay within the div which contains the rest of the > form. > > Here is what is happening: > > http://yakmaster.net/test/floating_submit.html > > I've added a border to the divs so it's clear