3 列 Web 部件页面?

发布于 2024-09-08 16:33:08 字数 315 浏览 2 评论 0原文

我正在为一些东西设置一个 ASP.NET Web 部件门户。我有一个[希望]非常简单的问题。如何让页面有 3 个主要栏目?

现在我有两列使用

。但我不知道如何在中心放置一个面板。右侧面板基本上位于中心,并且没有 css float: middle/center。那么三面板Web部件页面是如何完成的呢?

I am setting up an asp.net web parts portal for some stuff. I have a [hopefully] really easy question. How can I make the page have 3 major columns?

Right now I have two columns using <div id="leftpanel" style="float: left"> and <div id="rightpanel" style="float: right">. But I cannot figure out how to get a panel in the center. The right panel is basically in the center and there is not a css float: middle/center. So how is a three panel web parts page accomplished?

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

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

发布评论

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

评论(3

情绪少女 2024-09-15 16:33:08
<div class="container">
   <div class="column">
   </div>
   <div class="column">
   </div>
   <div class="column">
   </div> 
</div>
<div class="footer">
</div>

.container{width: 600px;}
.column{float: left; width: 200px;}
.footer{width: 600px; clear: both;}
<div class="container">
   <div class="column">
   </div>
   <div class="column">
   </div>
   <div class="column">
   </div> 
</div>
<div class="footer">
</div>

.container{width: 600px;}
.column{float: left; width: 200px;}
.footer{width: 600px; clear: both;}
没有伤那来痛 2024-09-15 16:33:08

前两个向左浮动,最后一个向右浮动。

如果这不起作用,有时也不起作用,那么请使用 Ed B 的答案。

float the first two left and the last one right.

If that doesn't work, and it sometimes won't, then use Ed B's answer.

寂寞美少年 2024-09-15 16:33:08

具有 3 列的表。在每列中添加一个 div。

将样式保留在 div 中......而不是表格中

A table with 3 columns. Add a div in each column.

Keep the style in the divs..not the table

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