Home > Web Front-end > CSS Tutorial > How Can I Create a Fully Curved Hexagon Using CSS?

How Can I Create a Fully Curved Hexagon Using CSS?

DDD
Release: 2024-12-02 13:22:10
Original
252 people have browsed it

How Can I Create a Fully Curved Hexagon Using CSS?

Curving the Edges of a Hexagon Using CSS

The provided CSS code successfully creates a hexagon with rounded edges on four sides, however, the top and bottom edges remain flat. To achieve a fully curved hexagon, adjustments are required.

Original CSS:

#hexagon-circle {
    width: 100px;
    height: 55px;
    background: red;
    position: relative;
    border-radius: 10px;
}

#hexagon-circle:before {
    content: "";
    position: absolute;
    top: -25px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 29px solid red;
    border-radius: 10px;
}

#hexagon-circle:after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 29px solid red;
    border-radius: 10px;
}
Copy after login

Solution:

To curve the top and bottom edges of the hexagon, the following CSS can be added:

.curved-hexagon {
  position: relative;
  width: 100px;
  height: 55px;
  background: red;
  border-radius: 10px 10px 0 0 / 10px 10px 29px 29px;
}

.curved-hexagon:before,
.curved-hexagon:after {
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: inherit;
  content: '';
}

.curved-hexagon:before {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.curved-hexagon:after {
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
Copy after login

In this modified CSS:

  • The border-radius property is updated to specify a curve on the top and bottom edges.
  • The transform property on the pseudo-elements is removed, as it is no longer needed.

This will result in a hexagon where all edges are curved, including the top and bottom edges.

The above is the detailed content of How Can I Create a Fully Curved Hexagon Using CSS?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template