Answers for "how to give space between content elements in css"

CSS
1

css content space

.foo::after {
    content: "\00a0 your-content \00a0";
}
Posted by: Guest on July-24-2021
0

css space between elements

.content {
  display: flex;
  justify-content: space-between;
  max-width: 400px;
  margin: 0 auto;
  background: #A0C5E8;
  padding: 10px 0;
}
Posted by: Guest on June-12-2021

Code answers related to "how to give space between content elements in css"

Browse Popular Code Answers by Language