Re: [css-d] slight layout change: center numbers in circles.

2011-01-15 Thread Philippe Wittenbergh
On Jan 15, 2011, at 4:10 PM, Bob Rosenberg wrote: I am not sure what the rules are when the first selected font does not contain the character but a subsequent one does (ie: Will it search the subsequent fonts for the character or just give up since it has found a prior font that is

[css-d] [test]: CSS and the HTML5 video element

2011-01-15 Thread Gabriele Romanato
Hi. It took a little bit to find a good converter from FLV to OGV, but finally I did it! The video is 27 mb in size, so you have to be a little bit patient :-) Results are encouraging, especially for future CSS3 enhancements:

Re: [css-d] [test]: CSS and the HTML5 video element

2011-01-15 Thread Philippe Wittenbergh
On Jan 15, 2011, at 7:13 PM, Gabriele Romanato wrote: It took a little bit to find a good converter from FLV to OGV, but finally I did it! The video is 27 mb in size, so you have to be a little bit patient :-) Results are encouraging, especially for future CSS3 enhancements:

Re: [css-d] [test]: CSS and the HTML5 video element

2011-01-15 Thread Philip Taylor (Webmaster, Ret'd)
Gabriele Romanato wrote: It took a little bit to find a good converter from FLV to OGV, but finally I did it! The video is 27 mb in size, so you have to be a little bit patient :-) Results are encouraging, especially for future CSS3 enhancements: Seamonkey 2.0.11 under Win/XP PRO;SP3

Re: [css-d] [test]: CSS and the HTML5 video element

2011-01-15 Thread David Laakso
On 1/15/11 5:13 AM, Gabriele Romanato wrote: It took a little bit to find a good converter from FLV to OGV, but finally I did it! http://onwebdev.blogspot.com/2011/01/css-and-html5-video-element.html Gabriele Greetings from Oaxaca. Please see: 1.png 2.png 3.png 4.png

Re: [css-d] [test]: CSS and the HTML5 video element [1]

2011-01-15 Thread David Laakso
On 1/15/11 9:19 AM, David Laakso wrote: http://chelseacreekstudio.com/ca/gr/ Screenshots Mac OS X10.4.11 -- http://chelseacreekstudio.com/ http://chelseacreekstudio.com/fa/ __ css-discuss [css-d@lists.css-discuss.org]

[css-d] Overriding styles

2011-01-15 Thread Tim Climis
I ran into an interesting application of CSS yesterday, that, while not useful for most people, might be in the fun to know category for others. I write software that interfaces with a government website through an embedded browser, and we're working on a UI overhaul. Unfortunately for us,

[css-d] [test]: CSS and HTML5 audio element

2011-01-15 Thread Gabriele Romanato
This completes the test series on HTML5 media elements: http://onwebdev.blogspot.com/2011/01/css-and-html5-audio-element.html HTH :-) http://www.css-zibaldone.com http://www.css-zibaldone.com/test/ (English) http://www.css-zibaldone.com/articles/ (English) http://onwebdev.blogspot.com/

Re: [css-d] [test]: CSS and HTML5 audio element

2011-01-15 Thread David Laakso
On 1/15/11 1:37 PM, Gabriele Romanato wrote: This completes the test series on HTML5 media elements: http://onwebdev.blogspot.com/2011/01/css-and-html5-audio-element.html HTH :-) Mac OS X 10.4.11 Pass Opera/11.0 Pass Safari/4.1.3 Pass WebKit/4.1.3 (4533.19.4, r63031) Fail SeaMonkey/2.0.11

[css-d] (no subject)

2011-01-15 Thread amitabha ghosh
I have designed a page layout in css by using divs. but i am finding while opening in another browser computer it is breaking all the designs. can anybody help me to sort it out? -- amitabhaghosh __ css-discuss

Re: [css-d] (no subject)

2011-01-15 Thread Kevin A. Cameron
Post link. Could be 1 of many things: linking local files (that are on your computer but no one else's), invalid CSS or markup, different browser/version... Kevin On Sat, Jan 15, 2011 at 11:33 AM, amitabha ghosh amitabhaghosh...@gmail.com wrote: I have designed a page layout in css by using

Re: [css-d] (no subject)

2011-01-15 Thread JWN
Morning Amitabhaghosh You wrote I have designed a page layout in css by using divs. but i am finding while opening in another browser computer it is breaking all the designs. can anybody help me to sort it out? -- amitabhaghosh A clickable link to the page in question would provide us place

[css-d] multi-line text vertical align

2011-01-15 Thread 李硕
Hello, I've made a page, but I don't know how to make the top left multi-line text become vertical middle. I want to change the content of the text later, so I want it to be vertical middle by itself. The page: http://www.ffb-all.com/my-test/1.html I've tried #site-description {

Re: [css-d] multi-line text vertical align

2011-01-15 Thread John D
This CSS works: #test { border: 5px double #eee; display: table-cell; background-color: #FF; height: 300px; width: 400px; margin: 0 auto; font-size: 24px; line-height: 36px; vertical-align: middle; text-align: center; } I have ignored branding and

Re: [css-d] multi-line text vertical align

2011-01-15 Thread 李硕
Thanks! I know the reason now, the vertical-align attribute cannot be put together with float attribute. 2011/1/16 John D xfs...@hotmail.com This CSS works: #test { border: 5px double #eee; display: table-cell; background-color: #FF; height: 300px; width:

Re: [css-d] multi-line text vertical align

2011-01-15 Thread Philippe Wittenbergh
On Jan 16, 2011, at 2:44 PM, 李硕 wrote: Thanks! I know the reason now, the vertical-align attribute cannot be put together with float attribute. Not really the issue. If you float an element, its display will be 'block' and not 'table-cell'. see also