answersLogoWhite

0

Up and Down is vertical and Left and Right is Horizontal

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Which type of centering results when text centered between the top and bottom margin?

It is when it is done with Vertical alignment.


What type of centering results when is centered between the top and bottom margin?

Up and Down is vertical and Left and Right is Horizontal


Which type of centering results when text is centerd between the top and bottom margin?

It is centred vertically.


Which type of centering result when text is centering between the top and bottom margin?

It is centred vertically.


How can you center a div using css without centering the text?

CSSdiv.center {text-align:center;} will center the text.div.center {margin: 0 auto} will center the div without centering the text.HTML


Does a bibliography need to be centered?

No, a bibliography does not need to be centered. It is common to align the text of a bibliography to the left margin.


What are the three types of alignments?

The three types of alignments are left-aligned (flush with the left margin), right-aligned (flush with the right margin), and centered (positioned in the center of the page).


What is it called when you position horizontally between the left and right maragins?

If you mean formatting the text so that it aligns with both the left and right margin settings - it's called 'justification'.


What is manner in which text is placed between the margin?

The manner in which text is placed between the margins is known as text alignment. Common types of alignment include left-aligned, where text is flush against the left margin; right-aligned, where it is flush against the right margin; centered, where text is evenly distributed between the margins; and justified, where text is evenly spaced to align with both margins. Each alignment style affects the overall appearance and readability of the text in a document.


What is valve margin?

The distance between the valve face and the head of the valve is called the margin.


How is a margin determined?

There are different kinds of margin. In printing, a margin is the distance between the edge of a physical page and where on the page the printing is. In business the margin is the difference between the market value of a stock and the loan a broker makes. A profit margin is calculated by finding the net profit as a percentage of the revenue.


How block elements can be centered with CSS1?

Block level elements can be centered by: The margin-left and margin-right properties can be set to some explicit value: body{ width: 40em; background: fluorescent; } p{ width:30 em; margin-right:auto; margin-left:auto } In this case, the left and right margins will be each, five ems wide since they split up the ten ems left over from (40em-30em). It was unnecessary for setting up an explicit width for the BODY element; it was done here for simplicity.