如何使用Razor为按钮指定宽度。我有这个:
<asp:Button ID="btnGoTo" runat="server" Text="<%= ButtonText %>" class="button" Width="<% (int)ButtonWidth %>px" />
但自然它不起作用。
有没有办法使用Razor设置按钮宽度?
答案 0 :(得分:0)
它不是剃刀,但无论如何......
在Visual Studio Solution Explorer窗口中,进入Content-Folder打开Site.css - 在文件末尾添加:
.button {
width: 180px;
}
为了获得响应式网站的更好结果,您还可以使用宽度:27em;或宽度:27rem; (作为rem相对较新的离开宽度:180px;在作为后退之前的行中)