[css-d] Fixed Column Width

2007-07-23 Thread Mohsen Saboorian
Hi, How can I force a table to have fixed size (width) cells using CSS (suppose you don't know how many columns a table may have). Thanks. __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 info

Re: [css-d] IE 100% Width

2007-03-19 Thread Mohsen Saboorian
Here a sample page: http://siahe.com/zekr/dev/iewidth/102_yusufali-pickthall-transliteration-en.html The problem is actually with CSS rule "table.customTrans" in screen-style.css. Thanks. On 3/19/07, Gunlaug Sørtun <[EMAIL PROTECTED]> wrote: > Mohsen Saboorian wrote: > &

[css-d] IE 100% Width

2007-03-19 Thread Mohsen Saboorian
Hi, I have a problem with setting width to 100% for a table inside a div. Mozilla is fine, but both IE 6 and 7 have problems, showing a horizontal scroll bar. To solve this, I tried to put the following IE-specific rule: width: expression(eval(this.parentNode.offsetWidth) + 'px') so that width wou

Re: [css-d] Strange IE Printing Result

2006-12-18 Thread Mohsen Saboorian
Hi Sasha, Here is an example: http://siahe.com/zekr/dev/ie-print-problem/sura-maryam.html Here is a sample printed PDF: http://siahe.com/zekr/dev/ie-print-problem/sura-maryam.pdf Thanks. On 12/19/06, Sasha Gerrand <[EMAIL PROTECTED]> wrote: > On 19/12/06, Mohsen Saboorian <[EMA

[css-d] Strange IE Printing Result

2006-12-18 Thread Mohsen Saboorian
Hi, I have an HTML page, with 2 CSS, one for "screen" media and the other for "print". The page contains a list of divs, each one has a dashed border-bottom. When I print the HTML, just borders of the first page are dashed, and on other pages the border changes to solid. Is it a known bug in IE?

Re: [css-d] Rule specific hack or conditoinal tag inside CSS

2006-12-08 Thread Mohsen Saboorian
Thanks, I'm looking for something inside CSS. IE conditional comment works from inside HTML only. > I believe that IE 7 will ignore the second declaration, thus doing what you > want. Although this bug was fixed in IE 7, I heard that a leading asterisk > (*) will be accepted by both IE 6 AND IE 7.

[css-d] Rule specific hack or conditoinal tag inside CSS

2006-12-08 Thread Mohsen Saboorian
Hi, I have a CSS rule, which works fine on Mozilla. For IE 6 to work, I overrided each item with a '_' padded equal rule, e.g.: position: fixed; _position: absolute; Now that I want to use IE 7 (which supports fixed positioning), how can I have it work with the first rule. Is ther