Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我无法在 ajaxtoolkit htmleditorextender 上设置 left 和 top 样式属性。
它指的是这样的 TargetControlID:
<asp:TextBox ID="TextBox2" style="position:relative;left:100px;top:80px" runat="server" Height="228px" Width="483px"></asp:TextBox>
但是一旦添加了扩展器
文本框失去了它的位置
多谢。
将您的文本框放入具有定义类属性的 div 容器中,并添加 css 类定义,如下所示:
.containerClass .ajax__html_editor_extender_container { position: relative; left: 100px; top: 80px; }