-1

I want to drag a side or corner of the label, but it won't let me. I searched Google & here, but have not found the answer.

4

2 回答 2

1

设置宽度和高度:

<asp:Label runat="server" ID="label" Width="50px" Height="100px"> </asp:Label>

最好设置 css 类并在样式表中进行:

<asp:Label runat="server" ID="label" CssClass="label"> </asp:Label>

在您的 site.css 文件中:

.label {
    height: 50px;
    width: 50px;
}
于 2013-10-01T20:46:25.133 回答
0

我去了工具 -> 选项 -> HTML 设计器 -> CSS 样式 -> 将使用工具箱添加的控件的定位更改为绝对位置,粘贴或拖放。

于 2013-10-01T21:10:42.803 回答