Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use pure CSS to realize single element McDonald's Logo

2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article is about how to use pure CSS to implement single-element McDonald's Logo. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

Code interpretation

Define dom with only 1 element:

Centered display:

Body {

Margin:0

Height:100vh

Display:flex

Align-items:center

Justify-content:center

Background:radial-gradient (circleatcenter,darkred,black)

}

Define the container size:

.mcdonalds {

Width:36em

Height:30em

Font-size:5px

Color:red

Background-color:currentColor

}

Draw the shape of the left half of the letter m n with pseudo elements:

.mcdonalds {

Position:relative

Overflow:hidden

}

.mcdonalds:: before {

Content:''

Position:absolute

Width:20em

Height:calc (30em*2)

Box-sizing:border-box

Border:solidyellow

Border-width:2.2em4.4em

Border-radius:50%

}

Make a copy of the left side, which is the shape of the right side n, together with the left side to form the letter m:

.mcdonalds:: before {

Filter:drop-shadow (16em00yellow)

}

Cover the bottom of the middle vertical line of the letter m a little bit with pseudo elements to make the vertical lines on both sides look longer:

.mcdonalds:: after {

Content:''

Position:absolute

Width:6em

Height:1.5em

Background-color:currentColor

Left:calc ((36em-6em) / 2)

Bottom:0

}

Finally, extend the red background a little bit:

.mcdonalds {

Box-shadow:00010em

}

Thank you for reading! This is the end of this article on "how to use pure CSS to achieve single-element McDonald's Logo". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it out for more people to see!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report