Click here to Skip to main content
15,886,529 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Combobox value in c# Pin
Reza Raad9-Jul-06 0:33
Reza Raad9-Jul-06 0:33 
Questionkeyascii Pin
Abhishek Joshi8-Jul-06 0:00
Abhishek Joshi8-Jul-06 0:00 
AnswerRe: keyascii Pin
eggsovereasy10-Jul-06 7:47
eggsovereasy10-Jul-06 7:47 
Questionprblm in asp.net page,code not working in script tag [modified] Pin
nabeelkhan7-Jul-06 22:41
nabeelkhan7-Jul-06 22:41 
AnswerRe: prblm in asp.net page,code not working in script tag Pin
Guffa8-Jul-06 3:31
Guffa8-Jul-06 3:31 
QuestionHow to make Photogallery in asp.net Pin
varun_khanna177-Jul-06 22:33
varun_khanna177-Jul-06 22:33 
AnswerRe: How to make Photogallery in asp.net Pin
eggsovereasy10-Jul-06 7:49
eggsovereasy10-Jul-06 7:49 
Questioncalling script remotely Pin
Nipal237-Jul-06 20:39
Nipal237-Jul-06 20:39 
AnswerRe: calling script remotely Pin
eggsovereasy10-Jul-06 7:51
eggsovereasy10-Jul-06 7:51 
GeneralRe: calling script remotely Pin
Nipal2310-Jul-06 17:04
Nipal2310-Jul-06 17:04 
QuestionHello doubt on sqlserver Pin
dhulipudi7-Jul-06 20:12
dhulipudi7-Jul-06 20:12 
AnswerRe: Hello doubt on sqlserver Pin
eggsovereasy10-Jul-06 7:52
eggsovereasy10-Jul-06 7:52 
QuestionExcel to asp.net 2.0 Pin
aaraaayen7-Jul-06 19:17
aaraaayen7-Jul-06 19:17 
AnswerRe: Excel to asp.net 2.0 Pin
Mike Ellison7-Jul-06 19:28
Mike Ellison7-Jul-06 19:28 
GeneralRe: Excel to asp.net 2.0 Pin
aaraaayen7-Jul-06 19:30
aaraaayen7-Jul-06 19:30 
GeneralRe: Excel to asp.net 2.0 Pin
Mike Ellison7-Jul-06 20:04
Mike Ellison7-Jul-06 20:04 
GeneralRe: Excel to asp.net 2.0 Pin
aaraaayen7-Jul-06 20:07
aaraaayen7-Jul-06 20:07 
GeneralRe: Excel to asp.net 2.0 Pin
Mike Ellison8-Jul-06 3:54
Mike Ellison8-Jul-06 3:54 
QuestionObjectDataSource and multiple controls Pin
Clickok7-Jul-06 13:54
Clickok7-Jul-06 13:54 
AnswerRe: ObjectDataSource and multiple controls Pin
minhpc_bk7-Jul-06 16:06
minhpc_bk7-Jul-06 16:06 
GeneralRe: ObjectDataSource and multiple controls Pin
Clickok8-Jul-06 12:03
Clickok8-Jul-06 12:03 
QuestionCharting with date values using OWC11 Pin
apravalikaa7-Jul-06 11:48
apravalikaa7-Jul-06 11:48 
QuestionRepeater Control Scroll bar Pin
mahesh kukkadapu7-Jul-06 10:32
mahesh kukkadapu7-Jul-06 10:32 
AnswerRe: Repeater Control Scroll bar Pin
Mike Ellison7-Jul-06 11:17
Mike Ellison7-Jul-06 11:17 
Questioncss layout question Pin
eggsovereasy7-Jul-06 10:28
eggsovereasy7-Jul-06 10:28 
I have a three column layout with a head across the top of all three columns and a container div that all the other divs are in. The styles look like this:

<br />
#Container<br />
{<br />
    background-color: White;<br />
    margin: 20px auto;<br />
    width: 80%;<br />
    border-left: solid 2px black;<br />
    border-right: solid 2px black;<br />
    border-top: solid 2px black;<br />
    border-bottom: solid 2px black;<br />
}<br />
<br />
#Header<br />
{<br />
    border-bottom: solid 1px black; <br />
    height: 100px;<br />
    background-image: url(../Images/Header/HeaderSpacer.jpg);<br />
    background-repeat: repeat-x;<br />
}<br />
<br />
#Left<br />
{<br />
    width: 160px;<br />
    margin: 0px;<br />
    float: left;<br />
    text-align: center;<br />
}<br />
<br />
#Center<br />
{<br />
    margin-left: 160px;<br />
    margin-right: 160px;<br />
    height: 100%;<br />
    padding-top: 10px;<br />
}<br />
<br />
#Right<br />
{<br />
    width: 160px;<br />
    margin: 0px;<br />
    float: right;<br />
    text-align: center;<br />
}<br />


In IE everything works perfectly, but in Firefox and Opera the container div only expands to the size of the content in the #Center div, in other words, if the right or left column is longer than the center column then it overflows out of #Container. Is there something I'm doing wrong, or is this an insurmountable problem?

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.