如何在bootstrap中为textarea字段提供背景颜色

Lio*_*ion 5 css twitter-bootstrap

需要在bootstrap中为我的文本区域字段提供背景颜色,这是文本区域字段

<div class="form-group">
    <div class="col-xs-12">
     <textarea class="form-control" id="exampleTextarea" rows="6"  placeholder="Message"></textarea>
    </div>
   </div>
Run Code Online (Sandbox Code Playgroud)

Emi*_*td. 8

添加此课程.

textarea#exampleTextarea {
    background: gray;
}
Run Code Online (Sandbox Code Playgroud)

或者你也可以使用它.

#exampleTextarea {
    background: gray;
}
Run Code Online (Sandbox Code Playgroud)