Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Have double border left and right css

I would like my double border with one line shorter than the other left and right.

the left is current only 1 line missing the smaller one

   .double-border {
  --b: 2px; /* thickness */
  --c: #3CD5AF;
  
  height: 100%;
  border-right: var(--b) solid var(--c);
  border-left: var(--b) solid var(--c);
  background: linear-gradient(var(--c) 0 0) right 10px bottom 0/var(--b) 50% no-repeat
}
 <div class="col-lg-8 double-border">
                            <h4>About the episode subhead lorem ipsum 1</h4>
                            <p>Nulla Lorem mollit cupidatat irure. Laborum magna nulla duis ullamco cillum dolor. Voluptate exercitation incididunt aliquip deserunt.</p>
                            <a hreff="">link</a></a>
                        </div>

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

Just use two background gradients.

.double-border {
  --b: 2px;
  /* thickness */
  --c: #3CD5AF;
  height: 100%;
  border-right: var(--b) solid var(--c);
  border-left: var(--b) solid var(--c);
  background: 
  linear-gradient(var(--c) 0 0) left 10px bottom 0/var(--b) 50% no-repeat, 
  linear-gradient(var(--c) 0 0) right 10px bottom 0/var(--b) 50% no-repeat
}

div {
  padding: 0 2em;
}
<div class="col-lg-8 double-border">
  <h4>About the episode subhead lorem ipsum 1</h4>
  <p>Nulla Lorem mollit cupidatat irure. Laborum magna nulla duis ullamco cillum dolor. Voluptate exercitation incididunt aliquip deserunt.</p>
  <a hreff="">link</a></a>
</div>
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading