.js_cell {
border:1px solid #666;
border-radius:2px;
background:beige;
width:30%;
position:relative;
}
#doctorIntroduction {
/*清除文本框默认样式*/
outline:none;
border:none;
resize:none;
background:beige;
/* 宽度自适应 */
box-sizing:border-box;
width:100%;
height:100px;
padding:6px 8px;
font-family:"微软雅黑";
font-size:15px;
color:#222;
}
/*滚动条整体*/
textarea::-webkit-scrollbar {
width:3px;
background:#ccc;
}
/* 滚动条里面可以拖动的部分*/
textarea::-webkit-scrollbar-thumb {
background:#666;
}
textarea::-webkit-input-placeholder {
color:#7f7f7f;
}
textarea::-moz-input-placeholder {
color:#7f7f7f;
}
textarea::-ms-input-placeholder {
color:#7f7f7f;
}
.counter {
position:absolute;
right:12px;
bottom:4px;
font-family:"微软雅黑";
font-size:14px;
color:#ccc;
}
textarea监听字数,蛮实用的 -v-!