在屏幕上居中 jquery 选项卡式面板

发布于 2024-10-13 08:30:24 字数 773 浏览 2 评论 0原文

我有一个像这样声明的选项卡面板:

<%@ taglib prefix="sj" uri="/struts-jquery-tags"%>
    <sj:tabbedpanel id="mytabs2" selectedTab="0">
      <sj:tab id="tab1" href="one.jsp" label="Tagged"/>
      <sj:tab id="tab2" href="two.jsp" label="Search"/>
      <sj:tab id="tab3" href="three.jsp" label="Add"/>
    </sj:tabbedpanel>

我正在使用 struts2 jquery 插件 - http://code .google.com/p/struts2-jquery/

如何调整选项卡的大小并使其在屏幕上居中? 该选项卡的宽度应为 70%,并显示在中间。

我尝试将 tabbedpanel 包装在 dev 元素中,然后使用 :

  <style>
  div { width:80%; text-align:center;  }
  </style>

但它工作得不太好。宽度调整大小但弄乱了选项卡元素中的格式。还有别的办法吗?

谢谢

I have a tabbedpanel declared like so :

<%@ taglib prefix="sj" uri="/struts-jquery-tags"%>
    <sj:tabbedpanel id="mytabs2" selectedTab="0">
      <sj:tab id="tab1" href="one.jsp" label="Tagged"/>
      <sj:tab id="tab2" href="two.jsp" label="Search"/>
      <sj:tab id="tab3" href="three.jsp" label="Add"/>
    </sj:tabbedpanel>

I'm using the struts2 jquery plugin - http://code.google.com/p/struts2-jquery/

How can I resize and center the tab on screen ?
The tab should be 70% in width and appear in the center.

I've tried wrapping the tabbedpanel in a dev element and then using :

  <style>
  div { width:80%; text-align:center;  }
  </style>

But its not working too well. The width resizes but messes up my formatting within the tab elements. Is there another way ?

Thanks

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

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

发布评论

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

评论(2

温柔一刀 2024-10-20 08:30:25
div { width:80%; margin: 0 auto 0 auto}
div { width:80%; margin: 0 auto 0 auto}
深海蓝天 2024-10-20 08:30:24

将 div 居中可以通过将其宽度设置为所需值并将边距设置为自动来完成。文本对齐仅影响 div 内的内联元素。 (这就是你的设计变得混乱的原因。)

div.yours { width: 70%; margin-left: auto; margin-right: auto }

Centering a div can be done by setting it's width to the desired value and setting margin to auto. Text-align only affects inline elements inside the div. (This is why your design gets messed up.)

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