asp:DropDownList引导程序样式-总是太高而没有边框吗?

时间:2018-08-29 05:22:32

标签: css asp.net bootstrap-4

场景:

  • 我无法正确设置 asp:DropDownList 样式。
  • 它可以正常工作,但与表单的其余部分不匹配。
    具体地说,表格的其余部分占地面积较小,没有背景,没有边框。

Todo:

  • 我们想要带边框和白色背景的下拉菜单(例如在引导程序表单页面上找到的下拉菜单)(很抱歉-我还不能发布图片)。


案例:
为了进行调试,我制作了一个只有一个下拉菜单和一个文本框进行比较的裸页。这是代码:

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">

   <link rel="stylesheet" href="css/bootstrap.css">
    <link href="css/bootstrap-select.css" rel="stylesheet" />

    <link rel="stylesheet" href="css/style.css">

    <link type="text/css" href="css/jquery-ui.min.css" rel="stylesheet" />
    <link type="text/css" href="css/jquery-ui.structure.min.css" rel="stylesheet" />
    <link type="text/css" href="css/jquery-ui.theme.min.css" rel="stylesheet" />
    
</head>
<body>
    <form id="form1" runat="server">
        <div class="col-5">
            <asp:TextBox runat="server" id="notmuch0" CssClass="form-control"></asp:TextBox>
            <asp:DropDownList ID="DropDownList1" CssClass="form-control-sm" runat="server"><asp:ListItem>1</asp:ListItem></asp:DropDownList>
        </div>
    </form>

               <!-- Javascript-->
    <script src="js/jquery.min.js"></script>
    <script src="js/jquery-ui.min.js"></script>

    <script src="js/bootstrap.js"></script>
    <script src="js/bootstrap-select.js"></script>

    <script src="js/core.min.js"></script>
     <script src="js/script.js"></script>
    <script src="js/popper.min.js"></script>

</body>
</html>

运行代码时,它将为下拉列表创建以下混乱:

<div class="col-5">
            <input name="notmuch0" type="text" id="notmuch0" class="form-control">
            <select name="DropDownList1" id="DropDownList1" class="form-control-sm select2-hidden-accessible" tabindex="-1" aria-hidden="true">
	<option value="1">1</option>

</select><span class="select2 select2-container select2-container--bootstrap select2-container--below" dir="ltr" style="width: 48px;"><span class="selection"><span class="select2-selection select2-selection--single" role="combobox" aria-haspopup="true" aria-expanded="false" tabindex="0" aria-labelledby="select2-DropDownList1-container"><span class="select2-selection__rendered" id="select2-DropDownList1-container" title="1">1</span><span class="select2-selection__arrow" role="presentation"><b role="presentation"></b></span></span></span><span class="dropdown-wrapper" aria-hidden="true"></span></span>
        </div>

  • 看起来还是错误的方式(没有边框,仍然是背景)

  • 我尝试过使用引导选择器-但.net似乎忽略了我们为更改类所做的所有事情。



我对此进行了大约4小时的研究-仍然没有任何内容
您能帮忙吗?将尝试任何事情。
请提出建议。谢谢。

1 个答案:

答案 0 :(得分:0)

尝试删除jquery-ui。 仅使用引导程序。