对齐 div 内的项目?

发布于 2024-10-19 04:49:03 字数 113 浏览 1 评论 0原文

我试图远离表格,因为我被告知它们只能用于表格数据。但是,我对如何实现此功能感到困惑。我的导航栏有一个搜索按钮、注册链接、登录链接和两个分隔线。如何像与表格一样对齐 div 中的每个项目?请原谅我对CSS的新手=P

I am trying to stay away from tables because I am told they are to be used for tabular data only. However, I am confused as to how to implement this functionality. My navigation bar has a search button, register link, login link, and two dividers. How would one align each item within the div much like one can with tables? Please excuse my newbieness to CSS =P

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

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

发布评论

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

评论(2

小情绪 2024-10-26 04:49:03
<ul class="menu">
 <li>Link 1</li>
 <li>Link 2</li>
 <li>Link 3</li>
 <li>Link 4</li>
</ul>

<style type="text/css">
   .menu {margin:0px;padding:0px;list-style:none;width:600px;margin:auto}
   .menu li {display:inline;padding:5px;margin-right:10px;background-color:#333;color:#fff}
</style>

虽然我还没有测试过它,但这应该会给你一些你正在寻找的东西。对上面的代码进行实验,以根据您的要求进行微调。是的,不需要一直避免桌子。要显示表格数据,表格是最佳选择

<ul class="menu">
 <li>Link 1</li>
 <li>Link 2</li>
 <li>Link 3</li>
 <li>Link 4</li>
</ul>

<style type="text/css">
   .menu {margin:0px;padding:0px;list-style:none;width:600px;margin:auto}
   .menu li {display:inline;padding:5px;margin-right:10px;background-color:#333;color:#fff}
</style>

Although I have not tested it, this should give you something you are looking for. Experiment on the above code to fine tune to your requirements. And yeah tables need not be avoided all the time. For displaying tabular data, tables are the best option

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