Fieldset 打破了网格?

发布于 2024-10-27 00:41:27 字数 800 浏览 1 评论 0原文

我刚刚开始使用蓝图,所以不要攻击我:-) 这是我的代码,一个简单的两列布局:

<body>
  <div class="container showgrid">
    <div class="span-24 last">
      <h1 >Logo Here</h1>
    </div>
    <div class="span-16">SlideShow</div>
    <div class="span-8 last">
      <form>
        <fieldset >
          <label for="email">Email</label>
          <input type="text" id="email" name="email" class="title">
        </fieldset>
      </form>
    </div>
  </div>
</body>

您可以在此处查看结果(在 Firefox 3 上):

http://img600.imageshack.us/i/screenwr.png/

如您所见,字段集打破了网格。如果我删除字段集,表单会变得更好,尽管它仍然宽一个像素。我做错了什么? 感谢您的帮助。

I just started with Blueprint, so don't bash me :-)
Here's my code, a simple two columns layout:

<body>
  <div class="container showgrid">
    <div class="span-24 last">
      <h1 >Logo Here</h1>
    </div>
    <div class="span-16">SlideShow</div>
    <div class="span-8 last">
      <form>
        <fieldset >
          <label for="email">Email</label>
          <input type="text" id="email" name="email" class="title">
        </fieldset>
      </form>
    </div>
  </div>
</body>

You can see the result here (on Firefox 3):

http://img600.imageshack.us/i/screenwr.png/

As you can see, the fieldset breaks the grid. If i drop the fieldset, the form gets better, altough it's still one pixel wider. What am I doing wrong?
Thanks for the help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱的故事 2024-11-03 00:41:27

只是文本字段太长了。在蓝图中,它设置为 300px。只需使用 CSS 覆盖文本字段宽度,它就应该是固定的。例如:

.span-8 input.text, .span-8 input.title { width: 275px; }

It's just that the text field is too long. In blueprint, it's set to 300px. Just use CSS to override the text field width and it should be fixed. For example:

.span-8 input.text, .span-8 input.title { width: 275px; }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文