我正在使用 bootstrap 和 opa 来显示一个 textarea,但我没有设法将我的 textarea 跨越整个屏幕宽度。
我正在使用以下简单代码:
import stdlib.themes.bootstrap;
import stdlib.widgets.bootstrap;
WB = WBootstrap;
textInput = <textarea style="width=30%" rows=30> This is a text area </textarea>
text2Input = <textarea style="width=100%" rows=1> another textarea </textarea>
content = WB.Grid.row([{span:4, offset:none, content: text2Input}]) <+>
WB.Grid.row([{span:16, offset:none, content: textInput}])
Server.start(
Server.http,
[
{page: function() {content}, title: "test" }
]
)
我也尝试使用以下 css :
textarea
{
border:1px solid #999999;
width:10%;
margin:5px 0;
padding:3px;
}
但它也不起作用。
似乎 WBoostrap 覆盖了我的所有更改。"width:100%" 样式不会出现在 opa 生成的 xhtml 中。
这样做的正确方法是什么?
谢谢