1

我想为 Google Chrome 创建一个时尚脚本,它将更改Google Tasks 页面<textarea>上的注释大小。

我要设置样式的元素是:

<textarea id=":2.notes-editor" class="l lc" rows="5" style=""></textarea>


目前我的时尚脚本看起来像这样。

#2.notes-editor{
height:100px;

}

url: https://mail.google.com

由于某种原因,它不起作用。

4

1 回答 1

0

你试过强迫它!important吗?

#2.notes-editor{
    height:100px !important;
}

如果这不起作用,可能是因为textarea它在一个内部iframe(我已经读过Chrome 上 iframe 内的 css 样式没有按预期工作)。

于 2013-02-06T02:29:45.470 回答