gpt4 book ai didi

html - 如何在多个菜单之间添加空格

转载 作者:行者123 更新时间:2023-12-04 08:55:53 28 4
gpt4 key购买 nike

我试图在两个菜单之间留出空间
使用左边距和右边距,但它不起作用。
_Layout.cshtml

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - My ASP.NET Application</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
<style>
/* .space{
margin-left:5px;
}*/
</style>

</head>
<body>
<div class="navbar-fixed-top">
<div class="col-md-12">
<a link href="" style="font-size:20px;">ABCD Technology</a>
</div>
</div>

<div class="row">
<div class="col-md-12">
<div class="row">
<div class="col-md-8"></div>
<div class="col-md-4 space">
<div style="margin-right:20px;"></div>
@Html.ActionLink("Home", "Index", "Home")
@Html.ActionLink("Services", "Index", "Home")
@Html.ActionLink("PortFolio", "Index", "Home")
@Html.ActionLink("About", "Index", "Home")
@Html.ActionLink("Hire Developer", "Index", "Home")
</div>
</div>
</div>
</div>

@RenderBody()

<div class="navbar-fixed-bottom" style="margin-left:45px;">
<footer>
<p>&copy; @DateTime.Now.Year - CopyRight@flt.com</p>
</footer>
</div>
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/bootstrap")
@RenderSection("scripts", required: false)
</body>
</html>

网站.css
body {
padding-top: 50px;
padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
padding-left: 15px;
padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists
will truncate terms that are too long to fit in the left column
*/
.dl-horizontal dt {
white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
max-width: 280px;
}

image referance
下面给出的代码也不起作用:
<div style="margin-left:5px;"></div>
我正在使用外部 css 类
<style>
/* .space{
margin-left:5px;
}*/
</style>
但这也不起作用。
见上图 我试图在两个菜单之间添加一个空格
site.css 类是否有任何更改,或者我设计了错误的菜单?

最佳答案

请替换代码。

<style>
/* .space{
margin-left:5px;
}*/

</style>
BY
<style>
.space a{ margin:0 7px; display: inline-block; }
</style>

关于html - 如何在多个菜单之间添加空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63828688/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com