Which CSS property allows you to specify an image to be used instead of the normal border around an element?

2. Which CSS property allows you to specify an image to be used instead of the normal border around an element?

  1. border-image
  2. border-picture
  3. border-background
  4. border-bgimage

Answer: A) border-image

Explanation:

The border-image property allows you to specify an image to be used instead of the normal border around an element.

Example:

.borderedimage{
	border-image: url(border.png) 30 round;
}

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.