0

Can someone help me achieve the effect like in the image:

enter image description here

Where for a containing text, I want a title that is a square bracket on the left side with text embedded within the bracket, as the SUMMARY in the example picture.

I cannot get this quite correct, here is what I have tried so far

#my-class {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

.my-class:before {
  content: '[';
  color: #ffb1bb;
  font-size: 60px;
}
<div class="my-class">
  As ... some text here inside the box.
</div>

How can I achieve this effect?

Lee Taylor
  • 7,761
  • 16
  • 33
  • 49
William Grimes
  • 675
  • 2
  • 11
  • 29

0 Answers0