English 中文(简体)
为什么W3C箱模式被认为更好? [闭门]
原标题:Why is the W3C box model considered better? [closed]
  • 时间:2010-03-12 01:02:36
  •  标签:
  • layout
  • css
Closed. This question is opinion-based. It is not currently accepting answers.

为什么大多数开发商认为W3C 盒式比互联网探索者使用的盒式模型要好?

令人非常沮丧的是,看到你希望通过互联网探索者的方式的发展中网页,但我发现W3C盒式反动。 例如,如果把边际、婚礼和边界因素考虑在内,我就可以把宽宏数值分配给我的所有栏目,而不担心栏目的数量,以及我对其婚生和边际所作的任何变化。

有了W3C的盒式模型,我不得不担心我拥有的栏目数,并发展某种类似于数学公式的字眼,以在改变边际和dding时计算正确的宽度值。 改变其价值观将十分困难,特别是因为布局复杂。 我写道:

#content {
    margin:0 auto 30px auto;
    padding:0 30px 30px 30px;
    width: 900px;
}

    #content .column {
        float: left;
        margin:0 20px 20px 20px;
    }
    #content .first {
        margin-left: 0;
    }
    #content .last {
        margin-right: 0;
    }

        .width_1-4 {
            width: 195px;
        }
        .width_1-3 {
            width: 273px;
        }
        .width_1-2 {
            width: 430px;
        }
        .width_3-4 {
            width: 645px;
        }
        .width_1-1 {
            width: 900px;
        }

除非有三栏,否则我在此分配的数值将保持不变,从而在<代码>上留下的幅度。 0 20周年20周年+0。 很难改变婚礼和间隙;我的整个宽度必须重新计算。 如果一栏的宽度包括胎盘和间隙,我需要做的是改变血缘,我有我的布局。 我更不批评盒式模式,更希望理解为什么它比我觉得难以同心协力而认为更好。

我这样做是错了吗? 使用W3C的盒式模型似乎只是自相矛盾的。

最佳回答

一字回答——<代码>-箱式

你们选择了您的盒式模式如何工作

问题回答

在个人方面,我更喜欢——我有时是羞耻的——IE的盒式。 禁止化学武器组织指出,“见 >更有意义地有事先界定的宽度,从宽度、dding度和边境宽度到减去<>>>>>>后,比有这样宽度的宽度

另一方面,我可以非常愉快地与这两种模式合作,我真正想要的是,无论选择哪一种执行,在执行工作之间都是consistency<>。

尽管我发现,W3C公司在大部分时间都取得了成功,但在这一具体情况下,我不得不说,IE的盒式是上司的。

我经常碰到的一个共同问题是,当我想把 w子确定为一定比例,并且还有一种 p子。 为了达到100%和增加婚礼,我被迫使用两块 d子,而不是一片,否则,在单块 d子上适用100%实际上会超过你预期的。 这使得真正难以以流动布局开展工作。

这不是一个更好或更糟的问题,而是符合接受组织的标准,而不是标准。

而另一方面,你的问题是想在300px集装箱内封结案文的人,该集装箱距离下一个集装箱10个。 现在,为了计算出血缘,你必须像你那样做计算。 你如何看待同一问题。





相关问题
Very basic WPF layout question

How do I get this listbox to be maxiumum size, i.e. fill the group box its in. I ve tried width="auto" Height="auto", width="stretch" Height="stretch" annoyingly at the moment, it dynamicly sizes to ...

How to align the text to top of TextView?

How to align the text to top of a TextView? Equivalent Android API for Swings setInsets()? that is top of text should start be in (0,0) of TextView <?xml version="1.0" encoding="utf-8"?> <...

Centring a flow in Shoes

Can I center the contents of a flow in Shoes? I know that a paragraph can be centred like: para Centred paragrpah , :align=> center However, this does not work with flows: flow(:align=> ...

Overlaying with CSS

I want to load a website in an iframe, and overlay the website with some hints about the website that is shown. However, i got stuck at the point that the website has a variable passive white space at ...

How do you normally make a program look beautiful? [closed]

How can I make an Application look nice and not like an amateur pulled it together? I mean graphic-wise. Is there some sort of book you can read regarding beautiful program layouts, etc? I put this ...