231k views
4 votes
How many CSS properties do you need to add to your personal website per the directions?1

2


3


4

User Kaydian
by
7.0k points

1 Answer

5 votes

Answer:

1 which can be rtl, ltr, initial, inherit

by rtl it means direction from right to left. By ltr it means the direction from left to right. Initial assigns the default value, and inherit takes the value of the parent element.

Like:

direction rtl;

direction ltr;

direction initial;

direction inherit;

CSS is used for styling, and direction plays a very important role in this.

Step-by-step explanation:

The syntax is given above, and direction is one of the most important CSS property.

User Kidjan
by
6.0k points