简体   繁体   English

如何在我的网络表单中从右到左导航栏?

[英]How Can I Make Right To Left Navbar In My Webform?

I'm just recently start Asp.net And now I'm gonna to make right to left navbar.我最近刚开始使用 Asp.net 现在我要从右到左导航栏。 Try some code but all was left to right.尝试一些代码,但一切都是从左到右的。

in case you using bootstrap use : class="navbar-right"如果您使用引导程序,请使用: class="navbar-right"

in case you didn't use it you should better use it )如果你没有使用它,你应该更好地使用它)

but if you still didn't want to you can use dir="rtl" in your nav header tag or creating class and use it like that但如果你仍然不想,你可以在你的导航标题标签中使用dir="rtl"或创建类并像这样使用它

<!DOCTYPE html>
<html>
<head>
<style>
.rtl {
    direction: rtl;
}
</style>
</head>
<body>
   <Navbar class="rtl">your text
      ...
   </Navbar>
</body>
</html>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何使Active Directory文件夹中的用户可以在ASP.NEt应用程序中看到Web窗体? - How I can make that users from a Active Directory Folder can see a webform in my ASP.NEt Application? 我想使标题向左和向右对齐 - I want to make my header left as well as right aligned 我如何让这个统一项目只向左或向右移动低灵敏度的鼠标? - how do i make this unity project move my mouse with low sensitivity only left or right? 我如何左右移动气缸? - How can i move a cylinder right and left? 如何让我的webform成为多语言? - How to make my webform to be multi-language? 如何让玩家在向左滑动时彼此靠近,向右滑动时他们移动到两侧? - How can I make players get close to each other on swipe left, and on swipe right they move to the sides? 如何使用 WinForms 使左右面板调整大小并使中心窄面板保持居中? - How can I make left and right panels resize and center narrow panel stay centered with WinForms? 当 NPC 向左或向右走时,如何使 animation 匹配? - How can I make the animation match when the NPC walks left or right? 当我按下左键或右键时,如何让播放器不旋转? - how to make the player not rotate when i press left or right button? 如何从左至右打印输出? - How do I print my output from left to right?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM