How can I make a vector image repeat inside a Visual Element?
The repeat USS properties are not yet exposed in the UI Builder, so you’ll have to author them directly in the USS file. Something like this:
.repeat-grid {
background-repeat: repeat;
background-size: 100px 100px;
}
1 Like
Thanks