Re: [css-d] Transcendant web design and CSS3

2010-03-08 Thread Estelle Weyl
I have a grid of all the CSS3 selectors and browser support on my blog at http://www.standardista.com/css3/css3-selector-browser-support The values and properties are on my old blog at http://www.evotech.net/blog/2010/02/css3-properties-values-browser-support/ this is a huge file, so it may

Re: [css-d] Need images centered vertically

2008-10-02 Thread Estelle Weyl
Hedger Wang has a good example that may help: http://www.hedgerwow.com/360/dhtml/css-layout-gridview.html -Estelle http://evotech.net/blog --- On Thu, 10/2/08, Carol Huddleston [EMAIL PROTECTED] wrote: From: Carol Huddleston [EMAIL PROTECTED] Subject: [css-d] Need images centered vertically

Re: [css-d] Lining up photos and text

2008-08-29 Thread Estelle Weyl
I wrote a tutorial a while back: http://www.evotech.net/blog/2007/05/vertical-centering-with-css/ that may help. until browsers support all display values, that hack is a fallback. -Estelle CSS, JavaScript and XHTML Explained http://evotech.net/blog/ --- On Fri, 8/29/08, Linda H [EMAIL

Re: [css-d] Horizontal scrolling in iframe

2008-08-25 Thread Estelle Weyl
You can use overflow-x and overflow-y properties separately, instead of just overflow: scroll http://www.w3.org/TR/css3-box/#overflow It's been supported since Mozilla 1.8 and IE5. I think all browsers support it even though it wasn't part of CSS2.1 specs (it will likely be in CSS3). Sounds

Re: [css-d] superfluous borders on hover

2008-08-25 Thread Estelle Weyl
First off, you want to make you A a block level element. This will cure the non-centering, since right now you are pushing the first word over to the right with 20px of padding, and the left word has 20px of padding to the right. Also, In bc4hkids.css @ line 117, you have: #main a:hover {

Re: [css-d] Link color not appearing in IE

2005-11-03 Thread Estelle Weyl
can in a LI -Estelle Estelle Weyl http://www.EstelleWeyl.com Helping make the web accessible since 1999 __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css

Re: [css-d] Site Check

2005-10-17 Thread Estelle Weyl
Great looking site! (checked Opera 8.5, Firefox and IE) Two edits I would recommend: indicate in the code that the spanish on the home page is spanish (lang=es I think). escape the in the breadcrumbs: gt; The other thing I don't know if you did on purpose or not: the list items in the

RE: [css-d] Space between two graphics

2005-10-05 Thread Estelle Weyl
image background, that way the spacing wont be apparent (but you'll still get the broken outline for your page, so that isn't a solution) 2) Try adding display: block; to the image Estelle Weyl http://www.EstelleWeyl.com 415.845.9906 Making the web accessible since 1999 -Original Message

RE: [css-d] Image and Links Missing in IE

2005-10-05 Thread Estelle Weyl
); background-repeat: no-repeat; } Estelle Weyl http://www.EstelleWeyl.com 415.845.9906 Making the web accessible since 1999 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Jeff Reid Sent: Wednesday, October 05, 2005 8:38 AM To: css-d@lists.css

RE: [css-d] Unknown vertical space above image

2005-10-05 Thread Estelle Weyl
room Estelle Weyl http://www.EstelleWeyl.com 415.845.9906 Making the web accessible since 1999 -Original Message- I have a CSS conundrum. I have a table-less css layout that looks good in Firefox (both Mac PC) but has a gigantic space above the middle image in IE 6.0/PC. Page: http

[css-d] Bullets not appearing in IE

2005-10-05 Thread Estelle Weyl
. Any help would be appreciated. Thanks. Estelle Weyl http://www.EstelleWeyl.com 415.845.9906 Making the web accessible since 1999 __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ

Re: [css-d] why are these two h2s different?

2005-10-04 Thread Estelle Weyl
You are floating the first to the right, which makes it only as wide as it has to be. A float is an element that only takes up as much space as it needs The second is a typical block level element, so it takes up the entire space it's allotted. -Estelle http://www.estelleweyl.com -