How to draw a lollipop using css

王林
Release: 2020-04-24 09:15:11
forward
3815 people have browsed it

How to draw a lollipop using css

Let’s take a look at the renderings first:

How to draw a lollipop using css

(recommended related video tutorials: css video tutorial)

CSS code:

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>棒棒糖</title>
    <h3>用css画一个棒棒糖</h3>

    <p>要求:</p>
    <p>1:棒棒糖中间文字为水平居中</p>
    <p>2:不得少于三层颜色</p>
<style>
 .round{
    width: 100px;
    height: 100px;
    background-color: #e5e7e9;
    position: relative;
    text-align: center;
    margin: 100px;
    font: italic bold 17px/100px arial,sans-serif;
    box-shadow: 
        0 0 0 10px #4286b4,
        0 0 0 20px #fc052e,
        0 0 0 30px #FBDD00,
        0 0 0 40px #00BDFB;
    border-radius: 200px;
    color: #ffffff;
 }
 .bangbang{
    width: 20px;
    height: 150px;
    margin: -80px 0px 0px 142px;
    background-color: #00BDFB;
    border-radius: 10px;
 }
</style>
</head>
<body>
    <div>
    hello world!
    </div>
    <div></div>
</body>
</html>
Copy after login

Recommended tutorial: css quick start

The above is the detailed content of How to draw a lollipop using css. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
css
source:jb51.net
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!