Click here to Skip to main content
15,922,894 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: sort Pin
baselanfouqa24-Nov-09 22:09
baselanfouqa24-Nov-09 22:09 
GeneralRe: sort Pin
raghu.g24-Nov-09 22:52
raghu.g24-Nov-09 22:52 
AnswerRe: sort Pin
Christian Graus27-Nov-09 6:31
protectorChristian Graus27-Nov-09 6:31 
QuestionHELP WITH BROWSERS Pin
SRJ9224-Nov-09 8:44
SRJ9224-Nov-09 8:44 
AnswerRe: HELP WITH BROWSERS Pin
Abhijit Jana24-Nov-09 20:25
professionalAbhijit Jana24-Nov-09 20:25 
AnswerRe: HELP WITH BROWSERS Pin
Marc Firth24-Nov-09 23:53
Marc Firth24-Nov-09 23:53 
GeneralRe: HELP WITH BROWSERS Pin
SRJ9225-Nov-09 5:09
SRJ9225-Nov-09 5:09 
Questionmoving the new row to the bottom Pin
baselanfouqa23-Nov-09 21:44
baselanfouqa23-Nov-09 21:44 
AnswerRe: moving the new row to the bottom Pin
raghu.g23-Nov-09 22:47
raghu.g23-Nov-09 22:47 
GeneralRe: moving the new row to the bottom Pin
baselanfouqa24-Nov-09 2:49
baselanfouqa24-Nov-09 2:49 
GeneralRe: moving the new row to the bottom Pin
Craig Fahrenholz24-Nov-09 3:34
Craig Fahrenholz24-Nov-09 3:34 
QuestionResizing table cell Pin
Matt Cavanagh21-Nov-09 4:06
Matt Cavanagh21-Nov-09 4:06 
AnswerRe: Resizing table cell Pin
Abhishek Sur22-Nov-09 10:05
professionalAbhishek Sur22-Nov-09 10:05 
GeneralRe: Resizing table cell Pin
apraev22-Nov-09 19:42
apraev22-Nov-09 19:42 
GeneralRe: Resizing table cell Pin
Abhishek Sur22-Nov-09 20:23
professionalAbhishek Sur22-Nov-09 20:23 
QuestionWebMethod notification Pin
swjam21-Nov-09 0:33
swjam21-Nov-09 0:33 
AnswerRe: WebMethod notification Pin
SimulationofSai21-Nov-09 7:33
SimulationofSai21-Nov-09 7:33 
AnswerRe: WebMethod notification Pin
Rob Graham21-Nov-09 7:52
Rob Graham21-Nov-09 7:52 
Questionmaking a compose page in word format.. Pin
sangeeta200920-Nov-09 8:41
sangeeta200920-Nov-09 8:41 
AnswerRe: making a compose page in word format.. Pin
Abhishek Sur21-Nov-09 6:47
professionalAbhishek Sur21-Nov-09 6:47 
GeneralRe: making a compose page in word format.. Pin
sangeeta200921-Nov-09 7:30
sangeeta200921-Nov-09 7:30 
GeneralRe: making a compose page in word format.. Pin
Abhijit Jana21-Nov-09 21:20
professionalAbhijit Jana21-Nov-09 21:20 
QuestionCSS: table min-width Pin
Alivemau520-Nov-09 3:29
Alivemau520-Nov-09 3:29 
AnswerRe: CSS: table min-width Pin
Abhijit Jana20-Nov-09 7:14
professionalAbhijit Jana20-Nov-09 7:14 
AnswerRe: CSS: table min-width Pin
Abhishek Sur21-Nov-09 6:46
professionalAbhishek Sur21-Nov-09 6:46 
For IE7 / IE6 you need to use css expression()....

But mind that even a mouse move will evaluate the expression. Let see how I am doing this :
Place this as css
.t-min-wid { 	
width: expression((document.body.clientWidth < 1180)? "1180px" : "auto"); /*min width for IE7 and below */
min-width: 1180px;  /* Min width for Firefox and IE8 */
}


Now apply
<table class="t-min-wid">

Your min width will be set for all browsers. Wink | ;) Wink | ;)

Abhishek Sur
Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->

Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using Javascript

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.