Re: [css-d] IE10 Preview button weirdness

2012-06-14 Thread Al Sparber
On 6/14/2012 11:15 PM, Philippe Wittenbergh wrote: Does any have access to the latest Windows 8 - IE 10 preview (aka the 'release preview') ? How does the first of the buttons look like ? test file: http://dev.l-c-n.com/_temp/button-test.html Both buttons _should_ look identical (they share all

[css-d] IE10 Preview button weirdness

2012-06-14 Thread Philippe Wittenbergh
Does any have access to the latest Windows 8 - IE 10 preview (aka the 'release preview') ? How does the first of the buttons look like ? test file: http://dev.l-c-n.com/_temp/button-test.html Both buttons _should_ look identical (they share all the same styles). On the previous beta releases of

Re: [css-d] CSS Tables and colspan

2012-06-14 Thread Philippe Wittenbergh
Le 14 juin 2012 à 16:19, Markus Ernst a écrit : > I was not aware of the fact that HTML table elements can also be turned into > block elements via CSS Yes, one can do that. It is a bit quirky in IE 8 and 9 (the elements don't really loose their 'tableness'), but that can be worked around by a

Re: [css-d] Noob Question

2012-06-14 Thread Hahnel, Fred (DET-MRM)
Add border:none; for each image or create an img class and put the border:none there (a lot less code) -Fred Hahnel From: Chris Stuckey [mailto:stuckeych...@rocketmail.com] Sent: Wednesday, June 13, 2012 6:51 PM To: Rod Castello Cc: css-d@lists.css-discuss.org; Hahnel, Fred (DET-MRM) Subject: R

[css-d] Nav Buttons

2012-06-14 Thread Chris Stuckey
Hi; I am trying to get buttons to work in my navigation. I would like them to display inline and to change on hover. Here is my css: body {     margin: 0 auto;     width: 1280px;     font-family: Arial,sans-serif;     color: black; } #menu {     display: inline;     position: relative;     clear

Re: [css-d] CSS Tables and colspan

2012-06-14 Thread Markus Ernst
Am 14.06.2012 03:33 schrieb Philippe Wittenbergh: Why don't you keep it as an html table, and then change the display value of table, tbody, tr, td, etc to 'block' within a media query ? Merci Philippe! I was not aware of the fact that HTML table elements can also be turned into block element