Home > database >  How do I remove the grey ring around a line?
How do I remove the grey ring around a line?

Time:05-10

grey ring

There is a grey ring around my line and I was wondering how I would remove it. I think it happens when I set a border-radius.

CodePudding user response:

You would use CSS and it would be:

lineclass{
  border: none;
}

lineclass would be the "class" of your line

<line ></line>

CodePudding user response:

I'm really not sure what you're looking for, but this could help.

style="border: 1px solid transparent;"

  • Related