[Solved] How can i give my h1 a border at the bottom right corner with css? [closed]


Use multiple background:

h1 {
  background-image:
    linear-gradient(blue,blue),
    linear-gradient(blue,blue);
  background-position:bottom right;
  background-size:3px 20px,20px 3px;
  background-repeat:no-repeat;
  
  display:inline-block;
  padding:0 5px;
}
<h1>Some text here</h1>

solved How can i give my h1 a border at the bottom right corner with css? [closed]