Home  >  Article  >  Web Front-end  >  How to Create a Border Overlay for a Child Div with Pseudo Elements?

How to Create a Border Overlay for a Child Div with Pseudo Elements?

Mary-Kate Olsen
Mary-Kate OlsenOriginal
2024-11-20 18:15:16355browse

How to Create a Border Overlay for a Child Div with Pseudo Elements?

Creating a Border Overlay Child Div

To create a border overlay effect for a child div, you can consider utilizing pseudo elements. This approach offers several advantages:

  • Avoids the need for additional markup.
  • Enhances control over border position and size.

Implementation Example:

body {
  background: grey;
}

.button {
  background: #94c120;
  width: 200px;
  height: 50px;
  margin: 50px;
  position: relative;
}

.button:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 5px solid #fff;
  box-sizing: border-box;
}
<div class="button">
  some text
</div>

The above is the detailed content of How to Create a Border Overlay for a Child Div with Pseudo Elements?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn