Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove dot marks from textarea

How to remove right bottom-corner dots from textarea ?

enter image description here

There is a solution with following css resize:none but I don't want to remove resizing...

So is it possible to do ...

like image 274
om_jaipur Avatar asked Aug 22 '14 07:08

om_jaipur


1 Answers

try these two ways:

.none::-webkit-resizer {
    display: none;
}
.pic::-webkit-resizer {
    background:    url(http://www.zhangxinxu.com//study/image/selection.gif);
    outline: 1px dotted #000;
}
<textarea class="none"></textarea>
<textarea class="pic"></textarea>
like image 119
Zhansingsong Avatar answered Oct 25 '22 18:10

Zhansingsong