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
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
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
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
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
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