Table of Contents
Image Source
Slicing the Image
Center Filling
Repetition
Outsetting
Decorative Buttons
Article Scroll
Home Page Overlay
Conclusion
About Andy Clarke
Home Web Front-end CSS Tutorial Revisiting CSS border-image

Revisiting CSS border-image

Apr 22, 2025 am 10:08 AM

Revisiting CSS border-image

My previous article, "Revisiting CSS Multi-Column Layout," noted that nearly two decades have passed since my first book, Transcending CSS, was published. This book explored then-novel CSS properties and their applications. A decade later, Hardboiled Web Design Fifth Anniversary Edition built upon this, introducing the border-image property.

(Note: An updated, freely available online version, Transcending CSS Revisited, exists. Hardboiled Web Design is available from my bookshop.)

The border-image property's potential excited me. It enabled image integration into element borders, even within tables (unless border collapse was applied).

Despite regular use, border-image remains underutilized. Is its awkward syntax to blame? Perhaps insufficient explanations of practical creative implementations? Likely both.

Recent work on Emmy-winning game composer Mike Worth's website, a graphically rich project, showcased border-image extensively.

border-image Properties and Values: A Quick Refresher

Most explanations begin with this often-confusing shorthand:

<code>border-image: \[source\] [slice]/\[width]/[outset\] [repeat]</code>
Copy after login

However, understanding individual properties is simpler.

Image Source

First, define the image source (bitmap, vector, or CSS gradient):

<code>border-image-source: url('/img/scroll.png');</code>
Copy after login

For SVGs, several options exist: external files:

<code>border-image-source: url('/img/scroll.svg');</code>
Copy after login

Data URIs (though less recommended due to SVG and HTML's XML nature):

<code>border-image-source: url('data:image/svg xml;base64,…');</code>
Copy after login

Directly embedding SVG code (avoiding extra HTTP requests):

<code>border-image-source: url('data:image/svg xml;utf8,…');</code>
Copy after login

Or, using CSS gradients:

<code>border-image-source: conical-gradient(…);</code>
Copy after login

(Tip: Remember: border-image renders above background and box-shadow, but below content.)

Slicing the Image

After specifying the source, slicing divides the image for placement in the border's nine regions. This is often confusing for newcomers.

While simple equal-sized slices are common, border-image handles complex shapes. Invisible cut-lines divide the image into nine parts, similar to slice guides in graphic editors.

border-image-slice defines slice sizes, specifying the distance from each edge. This can be a single value:

<code>border-image-slice: 65</code>
Copy after login

Combined top/bottom and left/right values:

<code>border-image-slice: 115 65;</code>
Copy after login

Or individual values (clockwise: top, right, bottom, left):

<code>border-image-slice: 65 65 115 125;</code>
Copy after login

The top-left image section goes to the top-left corner, and so on. Bitmap images assume pixel units; SVGs benefit from explicit height and width:

<code><svg height="600px" width="600px">…</svg></code>
Copy after login

Set border widths accordingly:

<code>border-image-width: 65px 65px 115px 125px;</code>
Copy after login

Center Filling

The center is typically ignored, but the fill keyword utilizes it:

<code>border-image-slice: 65px 65px 115px 125px fill;</code>
Copy after login

Repetition

Control how images repeat or stretch along edges:

  • stretch: Stretches smoothly.
  • repeat: Repeats textured images.
  • round: Repeats whole pieces, resizing the image.
  • space: Repeats whole pieces, adding spaces.

Individual edge settings are possible:

<code>border-image-repeat: stretch round;</code>
Copy after login

Outsetting

Extend the image beyond the border-box using border-image-outset:

<code>border-image-outset: 10px;</code>
Copy after login

Or specify individual outsets:

<code>border-image-outset: 20px 10px;</code>
Copy after login

border-image in Practice: Mike Worth's Website

Mike Worth's website, inspired by 90s animation, used border-image for efficiency and visual impact.

Decorative Buttons

Stone tablet-style buttons were created using SVGs and border-image:

<code>button {
  border-image-repeat: stretch;
  border-image-slice: 10 10 10 10 fill;
  border-image-source: url('data:image/svg xml;utf8,…');
  border-image-width: 20px;
}</code>
Copy after login

Article Scroll

A paper scroll effect was achieved using a single SVG and border-image, avoiding pseudo-elements:

<code>article {
  border-image-slice: 150 95 150 95 fill;
  border-image-width: 150px 95px 150px 95px;
  border-image-repeat: stretch round;
  border-image-source: url('data:image/svg xml;utf8,…');
}</code>
Copy after login

Home Page Overlay

An interactive overlay used border-image to add a colored gradient on hover:

<code>section:hover::before {
  opacity: .5;
  border-image: fill 0 linear-gradient(rgba(0,0,255,.25),rgba(255,0,0,1));
}</code>
Copy after login

Conclusion

border-image is a powerful tool for creating visually striking designs efficiently. Its potential should be explored more widely. Mike Worth's website demonstrates its capabilities for creating intricate borders, decorative elements, and dynamic overlays. Experiment with border-image to enhance your designs.

(Note: Mike Worth's website launches in April 2025; CodePen examples are available.)

About Andy Clarke

Andy Clarke is a pioneering web designer known for his creative and visually stunning work. He's authored several influential books, including Transcending CSS, Hardboiled Web Design, and Art Direction for the Web, and offers a popular web design contract template, Contract Killer.

The above is the detailed content of Revisiting CSS border-image. 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)

Vue 3 Vue 3 Apr 02, 2025 pm 06:32 PM

It&#039;s out! Congrats to the Vue team for getting it done, I know it was a massive effort and a long time coming. All new docs, as well.

Building an Ethereum app using Redwood.js and Fauna Building an Ethereum app using Redwood.js and Fauna Mar 28, 2025 am 09:18 AM

With the recent climb of Bitcoin’s price over 20k $USD, and to it recently breaking 30k, I thought it’s worth taking a deep dive back into creating Ethereum

Can you get valid CSS property values from the browser? Can you get valid CSS property values from the browser? Apr 02, 2025 pm 06:17 PM

I had someone write in with this very legit question. Lea just blogged about how you can get valid CSS properties themselves from the browser. That&#039;s like this.

A bit on ci/cd A bit on ci/cd Apr 02, 2025 pm 06:21 PM

I&#039;d say "website" fits better than "mobile app" but I like this framing from Max Lynch:

Stacked Cards with Sticky Positioning and a Dash of Sass Stacked Cards with Sticky Positioning and a Dash of Sass Apr 03, 2025 am 10:30 AM

The other day, I spotted this particularly lovely bit from Corey Ginnivan’s website where a collection of cards stack on top of one another as you scroll.

Using Markdown and Localization in the WordPress Block Editor Using Markdown and Localization in the WordPress Block Editor Apr 02, 2025 am 04:27 AM

If we need to show documentation to the user directly in the WordPress editor, what is the best way to do it?

Comparing Browsers for Responsive Design Comparing Browsers for Responsive Design Apr 02, 2025 pm 06:25 PM

There are a number of these desktop apps where the goal is showing your site at different dimensions all at the same time. So you can, for example, be writing

Why are the purple slashed areas in the Flex layout mistakenly considered 'overflow space'? Why are the purple slashed areas in the Flex layout mistakenly considered 'overflow space'? Apr 05, 2025 pm 05:51 PM

Questions about purple slash areas in Flex layouts When using Flex layouts, you may encounter some confusing phenomena, such as in the developer tools (d...

See all articles