一些Bootstrap 4类在ASP上不起作用。 NET Web表单应用程序

时间:2019-05-23 23:10:31

标签: asp.net webforms bootstrap-4

我已经将应用程序发布到IIS,并且在运行它时,我注意到在具有母版页的页面上,引导类“ form-control”无法正常工作。

当我在Visual Studio上运行我的应用程序时,它运行良好。我检查了我的页面,发现在Visual Studio中,文本框从_form.scss中获取该类,但是当我在IIS上运行它们时,它们从_print.scss中获取了该类,并且缺少某些属性。

正在运行的已发布应用

.form-control {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

Running from visual Studio

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

0 个答案:

没有答案