Computer Science, asked by nipunarora, 1 year ago

How can a 2d and 3d horizontal rule be displayed

Answers

Answered by Sidyandex
32

The 2d and the 3D can be differentiated by some of the reasons.

The 2D has the two dimensional layout in the picture quality which you all see in the photos or movies.

And the things which you see from the eyes and the real things which you see is a 3D dimensional structure like people and tress and everything.

Answered by Honeypie096
4

Here are the default style values for <hr/> in HTML 5:

hr {

display: block;

margin-top: 0.5em;

margin-bottom: 0.5em;

margin-left: auto;

margin-right: auto;

border-style: inset;

border-width: 1px;

}

You can change the values as you like.

Here are the default style values for <hr/> in HTML 5:

hr {

display: block;

border-width: 1px;

}

You can change the values as you like.

Similar questions