Home Web Front-end HTML Tutorial CSS3 border-image介绍_html/css_WEB-ITnose

CSS3 border-image介绍_html/css_WEB-ITnose

Jun 21, 2016 am 08:49 AM

CSS3里border边框属性做了大幅扩展,其中border-image这个属性(顾名思义,就是可以给边框添加图片)理解和使用起来有点难度。本篇就介绍一下border-image。

先从基本的语法开始入手,例如border-image: url(border.png) 26 repeat stretch;。可以看出分成三个部分:url,剪裁位置,显示方式

首先是url,可以使用绝对或相对路径来加载边框图片,比较简单就不啰嗦了。

其次是剪裁位置,使用TRBL原则(top-right-bottom-left),上例中26就表示上右下左都剪裁26px。你可以设成26 52,就表示上下剪裁26px,左右剪裁52px。你也可以设成10 15 20 25表示上10px,右15px,下20px,左25px位置开始剪裁。单位不指定的话,默认是px像素,你也可以设成%百分比。比如一张50px * 50px的图片,你设成20%,就表示上右下左都剪裁10px。

经过上右下左剪裁后,好好一张图片就成了9宫格的样子。(9宫格大家都知道的吧?锤子手机界面就是9宫格)。一图胜千言

剪裁前该图片的尺寸是78px * 78px

经过border-image: url(border.png) 26;剪裁后成了9宫格

9宫格分为9个部分(这不是废话么…):上右,上中,上左,中右,中中,中左,下右,下中,下左。经剪裁后,9宫格最中心的部分,即中中,不会被显示出来,会被丢弃。能显示的就是9宫格周围那一圈。其中四个角(图中红色菱形部分)就分别固定在border的四个角。即上右部分就显示在border的右上角,同理上左,下右,下左部分就分别显示在border的左上角,右下角,左下角。剩下4个部分上中,中右,中左,下中(图中蓝色菱形部分)的显示效果需要结合显示方式。

显示方式分stretch拉伸,repeat重复,round平铺。默认值是stretch拉伸。你需要对9宫格的上中和下中设置水平显示方式,对中右和中左设置垂直显示方式。

stretch拉伸最容易理解。但round平铺和repeat重复比较搞,有什么区别呢?round会改变9宫格部分的原始尺寸,而repeat重复会保留9宫格部分的原始尺寸,然后居中开始往两边无脑重复。

比如水平平铺(9宫格里上中,下中部分平铺),垂直拉伸(9宫格里中右,中左部分拉伸),所谓一图胜千言:

.border-image {    width: 120px;    height: 80px;    border: 26px solid;    border-image: url(border.png) 26 round stretch;}<div class="border-image"></div>
Copy after login

垂直stretch拉伸效果一目了然。水平round平铺会改变9宫格部分的原始尺寸,例中div长度是120px,9宫格裁剪后一个蓝色菱形是26px,因此可以显示4.6个蓝色菱形,四舍五入会显示5个蓝色菱形,每个菱形被缩小成了24px。

那我们试试将水平改成repeat重复,看看有什么差别,所谓一图胜千言:

.border-image {    width: 120px;    height: 80px;    border: 26px solid;    border-image: url(border.png) 26 repeat stretch;}<div class="border-image"></div>
Copy after login

repeat重复会保留9宫格部分的原始尺寸(每个蓝色菱形仍旧26px),然后居中开始往两边无脑重复,最终显示4.6个蓝色菱形

水平和垂直如果是同样值,不必重复敲代码:border-image: url(border.png) 26 round;即可。等价于border-image: url(border.png) 26 round round;。因为显示方式的默认值是stretch拉伸。所以border-image: url(border.png) 26;等价于border-image: url(border.png) 26 stretch stretch;

用法介绍完了,有什么用呢?这就得发挥想象力了。比如一些漂亮的页面效果。原始png图:

用border-image给div的边框加上该图片后,该div的效果:

最后根据Can I Use显示该属性在IE上有兼容性问题,只有IE11才开始支持。(对于IE,或曰对于微软我早已无力吐槽)

其他浏览器最新版,直接用border-image没问题。但旧版需要加上前缀,参考MDN通常这样写:

-moz-border-image:url("border.png") 30 30 repeat; /* Old Firefox */ -webkit-border-image:url("border.png") 30 30 repeat; /* Safari */ -o-border-image:url("border.png") 30 30 repeat; /* Opera */ border-image:url("border.png") 30 30 repeat;
Copy after login
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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

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)

Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update? Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update? Mar 04, 2025 pm 12:32 PM

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

How to efficiently add stroke effects to PNG images on web pages? How to efficiently add stroke effects to PNG images on web pages? Mar 04, 2025 pm 02:39 PM

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

How do I use HTML5 form validation attributes to validate user input? How do I use HTML5 form validation attributes to validate user input? Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

What are the best practices for cross-browser compatibility in HTML5? What are the best practices for cross-browser compatibility in HTML5? Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the purpose of the <iframe> tag? What are the security considerations when using it? What is the purpose of the <iframe> tag? What are the security considerations when using it? Mar 20, 2025 pm 06:05 PM

The article discusses the &lt;iframe&gt; tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

See all articles