SP Designer 2007中的CSS文本框大小

时间:2011-11-24 11:32:43

标签: css

以下内容在SP设计器中用于在sharepoint 2007设计器中呈现以下Label和Textbox。

<table width="100%" style="border: thin solid silver">
            <tr>
                    <td>
                        Current  Hours*
                    </td>

                    <td >
                        <SharePoint:FormField runat="server" id="ff18{$Pos}" ControlMode="New" FieldName="Contracted_x0020_Hours" __designer:bind="{ddwrt:DataBind('i',concat('ff18',$Pos),'Value','ValueChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@Contracted_x0020_Hours')}"/>
                            <SharePoint:FieldDescription runat="server" id="ff18description{$Pos}" FieldName="Contracted_x0020_Hours" ControlMode="New"/>

                    </td>
        </tr>
</table>

如何更改texbox的大小。?

enter image description here

1 个答案:

答案 0 :(得分:1)

使用那里识别css样式并相应地更改它......或者如果你使用jQuery试试:

$("input[id^='ff18']").css('height',20);
$("input[id^='ff18']").css('width',50);

例如......