CSS - Resize both

3

Good afternoon.

I'm using the resize: both property in a div and it works perfectly, my doubts are regarding the two traces that appear to indicate such property, is it possible to customize them?

    
asked by anonymous 20.06.2016 / 22:22

1 answer

2

You can not customize it.

Alternatively you can put an image in the lower right corner, using some type code, above the "traces":

    textarea {
  height: 150px;
  width: 150px;
  position: relative;
  background: #fff url(http://merchantmomphotoeditor.com/pixenate/docs/resize_handle2.gif) 100% 100% no-repeat;
}
    
20.06.2016 / 22:26