search
HomeWeb Front-endCSS TutorialRevisiting CSS border-image

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>

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>

For SVGs, several options exist: external files:

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

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

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

Directly embedding SVG code (avoiding extra HTTP requests):

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

Or, using CSS gradients:

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

(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>

Combined top/bottom and left/right values:

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

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

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

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>

Set border widths accordingly:

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

Center Filling

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

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

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>

Outsetting

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

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

Or specify individual outsets:

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

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>

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>

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>

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
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
CSS Inclusion: Choosing the Right Method for Your ProjectCSS Inclusion: Choosing the Right Method for Your ProjectMay 16, 2025 am 12:02 AM

ThebestmethodforincludingCSSdependsonprojectsizeandcomplexity:1)Forlargerprojects,useexternalCSSforbettermaintainabilityandperformance.2)Forsmallerprojects,internalCSSissuitabletoavoidextraHTTPrequests.Alwaysconsidermaintainabilityandperformancewhenc

This Isn't Supposed to Happen: Troubleshooting the ImpossibleThis Isn't Supposed to Happen: Troubleshooting the ImpossibleMay 15, 2025 am 10:32 AM

What it looks like to troubleshoot one of those impossible issues that turns out to be something totally else you never thought of.

@keyframes vs CSS Transitions: What is the difference?@keyframes vs CSS Transitions: What is the difference?May 14, 2025 am 12:01 AM

@keyframesandCSSTransitionsdifferincomplexity:@keyframesallowsfordetailedanimationsequences,whileCSSTransitionshandlesimplestatechanges.UseCSSTransitionsforhovereffectslikebuttoncolorchanges,and@keyframesforintricateanimationslikerotatingspinners.

Using Pages CMS for Static Site Content ManagementUsing Pages CMS for Static Site Content ManagementMay 13, 2025 am 09:24 AM

I know, I know: there are a ton of content management system options available, and while I've tested several, none have really been the one, y'know? Weird pricing models, difficult customization, some even end up becoming a whole &

The Ultimate Guide to Linking CSS Files in HTMLThe Ultimate Guide to Linking CSS Files in HTMLMay 13, 2025 am 12:02 AM

Linking CSS files to HTML can be achieved by using elements in part of HTML. 1) Use tags to link local CSS files. 2) Multiple CSS files can be implemented by adding multiple tags. 3) External CSS files use absolute URL links, such as. 4) Ensure the correct use of file paths and CSS file loading order, and optimize performance can use CSS preprocessor to merge files.

CSS Flexbox vs Grid: a comprehensive reviewCSS Flexbox vs Grid: a comprehensive reviewMay 12, 2025 am 12:01 AM

Choosing Flexbox or Grid depends on the layout requirements: 1) Flexbox is suitable for one-dimensional layouts, such as navigation bar; 2) Grid is suitable for two-dimensional layouts, such as magazine layouts. The two can be used in the project to improve the layout effect.

How to Include CSS Files: Methods and Best PracticesHow to Include CSS Files: Methods and Best PracticesMay 11, 2025 am 12:02 AM

The best way to include CSS files is to use tags to introduce external CSS files in the HTML part. 1. Use tags to introduce external CSS files, such as. 2. For small adjustments, inline CSS can be used, but should be used with caution. 3. Large projects can use CSS preprocessors such as Sass or Less to import other CSS files through @import. 4. For performance, CSS files should be merged and CDN should be used, and compressed using tools such as CSSNano.

Flexbox vs Grid: should I learn them both?Flexbox vs Grid: should I learn them both?May 10, 2025 am 12:01 AM

Yes,youshouldlearnbothFlexboxandGrid.1)Flexboxisidealforone-dimensional,flexiblelayoutslikenavigationmenus.2)Gridexcelsintwo-dimensional,complexdesignssuchasmagazinelayouts.3)Combiningbothenhanceslayoutflexibilityandresponsiveness,allowingforstructur

See all articles

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 Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Clair Obscur: Expedition 33 - How To Get Perfect Chroma Catalysts
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.