Category / Section
How to Customize the selector style
1 min read
How to customize the selector style
We can customize the selector style using the css. Please refer to the code example.
JS
<style>
#helper, #resizeBorder, #nw-resize, #n-resize, #ne-resize, #e-resize, #w-resize, #se-resize, #sw-resize, #s-resize {
stroke: #1E90FF;
stroke-width: 5px;
fill: #1E90FF;
opacity: .1;
}
</style>
CSHTML
<style>
#helper, #resizeBorder, #nw-resize, #n-resize, #ne-resize, #e-resize, #w-resize, #se-resize, #sw-resize, #s-resize {
stroke: #1E90FF;
stroke-width: 5px;
fill: #1E90FF;
opacity: .1;
}
</style>
ASPX
<style>
#helper, #resizeBorder, #nw-resize, #n-resize, #ne-resize, #e-resize, #w-resize, #se-resize, #sw-resize, #s-resize {
stroke: #1E90FF;
stroke-width: 5px;
fill: #1E90FF;
opacity: .1;
}
</style>