一、
<style
type="text/css"">
.smallInput{background:#ffffff;border-bottom-color:#ff6633;
border-bottom-width:0px;border-top-width:0px;border-left-width:0px;border-right-width:0px;
solid
#ff6633;
color:
#000000;
FONT-SIZE:
9pt;
FONT-STYLE:
normal;
FONT-VARIANT:
normal;
FONT-WEIGHT:
normal;
HEIGHT:
18px;
LINE-HEIGHT:
normal}
</style>
<asp:TextBox
ID="TextBox1" runat="server"
style="overflow: auto"
TextMode="MultiLine"
class="smallInput"
Height="96px"></asp:TextBox>
二、
<asp:TextBox
ID="TextBox1" runat="server"
style="overflow: auto"
TextMode="MultiLine"
Height="96px"></asp:TextBox>
其中 style="overflow: auto"
就可以實現(xiàn)效果了。
|