Home Web Front-end CSS Tutorial CSS uses Sprites technology to achieve rounded corners

CSS uses Sprites technology to achieve rounded corners

Jun 28, 2018 am 11:17 AM
css rounded corners

This article mainly introduces the effect of using CSS Sprites technology to achieve rounded corners. It has a certain reference value. Now I share it with you. Friends in need can refer to it.

Using CSS Sprites technology to draw circles Corner, to put it simply, is to make a circle on a picture, define 4 p's, and take a corner of the picture as the background for each p. Let's look at the specific implementation method.

First of all, let’s briefly talk about what Sprites is. Sprites is a web image application processing method. It allows you to include all the scattered pictures involved in a page into one big picture, so that when the page is accessed, the loaded pictures will not be displayed one by one as before. . For the current popular network speed, the loading time required for a single image not exceeding 200KB is basically the same, so there is no need to worry about this issue.

Step one: Create our Sprite

Use tools such as PS to synthesize the picture as shown in the picture (distinguished by a red line of one pixel)

CSS uses Sprites technology to achieve rounded corners

Step 2: Write HTML code

First, we will give the container p a .roundedBox class:

<p class="roundedBox"></p>
Copy after login

Now, we must add four more p's, which will be used when creating fillets in the future. Then a class .corner must be loaded for each, and a class identified to specify the position of their grid.

<p class="roundedBox">
    <strong>My content in roundedBox Type 1</strong>
    <p class="corner topLeft"></p>
    <p class="corner topRight"></p>
    <p class="corner bottomLeft"></p>
    <p class="corner bottomRight"></p>
</p>
Copy after login

Step 3: Write CSS styles

Absolutely positioned elements are usually positioned according to their relatively positioned parent elements. If the parent element cannot be defined, then it will go to the most recently relatively positioned parent element, up to the body tag.

Let us first define all the rounded corners

All rounded corners must be defined with absolute positioning, and the height and width must be specified. The width and height of my rounded corners are both 17px.

CSS uses Sprites technology to achieve rounded corners

.corner{position:absolute;width:17px;height:17px;}
Copy after login

Now let’s define the p container style:

.roundedBox {position:relative;}
Copy after login

Anything defined with the class .roundedBox Within an element, absolutely positioned elements will be positioned relative to this element, not the tag body. We also have to set some padding values. If not set, the rounded corners will cover our text, which is definitely not the effect we want. Important: The top and bottom padding values ​​must be equal to the height of the fillet. The left and right padding values ​​must be equivalent to the width of the fillet. As you already know, my fillet width and height are equal, therefore, the padding values ​​​​of the four corners are also equal:

.roundedBox {position:relative; padding:17px; margin:10px 0;}
Copy after login

Let's make a separate definition for no rounded corners

We will set the absolute positioning of each rounded corner and position the background image (according to our sprite):

.roundedBox {position:relative; padding:17px; margin:10px 0;}
.corner {position:absolute; width:17px; height:17px;}
.topLeft {top:0; left:0; background-position:-1px -1px;} 
.topRight {top:0; right:0; background-position:-19px -1px;} 
.bottomLeft {bottom:0; left:0; background-position:-1px -19px;}
.bottomRight {bottom:0; right:0; background-position:-19px -19px;}
Copy after login

Finally, match a background color to #type1 so that it can be integrated into the sprite Rounded corners:

#type1 {background-color:#CCDEDE;}
#type1 .corner {background-image:url(../image/corners.gif);}
Copy after login

All codes:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
.roundedBox {position:relative; padding:17px; margin:10px 0;}
.corner {position:absolute; width:17px; height:17px;}
.topLeft {top:0; left:0; background-position:-1px -1px;}
.topRight {top:0; right:0; background-position:-19px -1px;}
.bottomLeft {bottom:0; left:0; background-position:-1px -19px;}
.bottomRight {bottom:0; right:0; background-position:-19px -19px;}
#type1 {background-color:#CCDEDE;}
#type1 .corner {background-image:url(../image/corners.gif);}
</style>
</head>
<body>
<p class="roundedBox" id="type1">
    <strong>My content in roundedBox Type 1</strong>
    <p class="corner topLeft"></p>
    <p class="corner topRight"></p>
    <p class="corner bottomLeft"></p>
    <p class="corner bottomRight"></p>
</p>
</body>
</html>
Copy after login

The above is the entire content of this article, I hope it will be helpful to everyone's study, For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

CSS3 three-dimensional deformation to realize three-dimensional blocks

About 20 loading animation effects produced by CSS3

How to implement the animation effect of tilting and rotating simultaneously in CSS3

# #

The above is the detailed content of CSS uses Sprites technology to achieve rounded corners. For more information, please follow other related articles on the PHP Chinese website!

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1658
14
PHP Tutorial
1257
29
C# Tutorial
1231
24
How to use bootstrap in vue How to use bootstrap in vue Apr 07, 2025 pm 11:33 PM

Using Bootstrap in Vue.js is divided into five steps: Install Bootstrap. Import Bootstrap in main.js. Use the Bootstrap component directly in the template. Optional: Custom style. Optional: Use plug-ins.

Understanding HTML, CSS, and JavaScript: A Beginner's Guide Understanding HTML, CSS, and JavaScript: A Beginner's Guide Apr 12, 2025 am 12:02 AM

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

The Roles of HTML, CSS, and JavaScript: Core Responsibilities The Roles of HTML, CSS, and JavaScript: Core Responsibilities Apr 08, 2025 pm 07:05 PM

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

How to insert pictures on bootstrap How to insert pictures on bootstrap Apr 07, 2025 pm 03:30 PM

There are several ways to insert images in Bootstrap: insert images directly, using the HTML img tag. With the Bootstrap image component, you can provide responsive images and more styles. Set the image size, use the img-fluid class to make the image adaptable. Set the border, using the img-bordered class. Set the rounded corners and use the img-rounded class. Set the shadow, use the shadow class. Resize and position the image, using CSS style. Using the background image, use the background-image CSS property.

How to write split lines on bootstrap How to write split lines on bootstrap Apr 07, 2025 pm 03:12 PM

There are two ways to create a Bootstrap split line: using the tag, which creates a horizontal split line. Use the CSS border property to create custom style split lines.

How to set up the framework for bootstrap How to set up the framework for bootstrap Apr 07, 2025 pm 03:27 PM

To set up the Bootstrap framework, you need to follow these steps: 1. Reference the Bootstrap file via CDN; 2. Download and host the file on your own server; 3. Include the Bootstrap file in HTML; 4. Compile Sass/Less as needed; 5. Import a custom file (optional). Once setup is complete, you can use Bootstrap's grid systems, components, and styles to create responsive websites and applications.

How to resize bootstrap How to resize bootstrap Apr 07, 2025 pm 03:18 PM

To adjust the size of elements in Bootstrap, you can use the dimension class, which includes: adjusting width: .col-, .w-, .mw-adjust height: .h-, .min-h-, .max-h-

How to use bootstrap button How to use bootstrap button Apr 07, 2025 pm 03:09 PM

How to use the Bootstrap button? Introduce Bootstrap CSS to create button elements and add Bootstrap button class to add button text

See all articles