w3resource

CSS Properties: How to set the number(s) represent pixels for raster images or coordinates for vector images?

Go to Exercise page

Solution:

HTML Code:

<!DOCTYPE html><!-- Declaration of HTML5 document type -->
<html>
<head>
<title>How to set the number(s) represent pixels for raster images or coordinates for vector images</title><!-- Title of the HTML document -->
<style type="text/css">/* CSS style start*/
div {
border: 15px solid transparent; /* Sets a transparent solid border with 15px width for <div> elements */
padding: 15px; /* Sets 15px padding for <div> elements */
border-image: url(https://www.w3resource.com/w3r_images/border.png); /* Specifies the border image source */
border-image-slice: 10; /* Slices the border image into sections of 10 pixels */
border-image-repeat: round; /* Sets the border image to be repeated and rounded */
}
</style>
</head>
<body>
<div>border-image-slice: 50;</div><!-- Demonstrates border image slicing into sections of 50 pixels -->
</body>
</html>

Explanation:

  • This HTML document demonstrates how to set the number(s) that represent pixels for raster images or coordinates for vector images in the border-image-slice property.
  • The <div> element is styled with a border image sourced from the specified URL.
  • border: 15px solid transparent; sets a transparent solid border with a width of 15 pixels for the <div> element.
  • padding: 15px; adds 15 pixels of padding to the <div> element.
  • border-image-slice: 10; slices the border image into sections of 10 pixels.
  • border-image-repeat: round; sets the border image to be repeated and rounded.
  • The text "border-image-slice: 50;" inside the <div> demonstrates border image slicing into sections of 50 pixels.

Live Demo:

See the Pen border-image-slice-number-answer by w3resource (@w3resource) on CodePen.


See the solution in the browser

Supported browser

Firefox logo Chrome logo Opera logo Safari logo Internet Explorer logo
Yes Yes Yes Yes No

Go to Exercise page

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.