Linecap and Linejoint are great config for SVG lines

Posted on November 18, 2019

Just a reminder that SVG has these two line configuration that allow great flexibility when drawing lines:

line{
  stroke-linecap: round;
  stroke-linejoint: round;
}

Just to keep in mind.