Computer Science, asked by seemashukla782, 7 months ago

what used to place the content in the center​

Answers

Answered by parthu2011
0

Answer:

The most common and (therefore) easiest type of centering is that of lines of text in a paragraph or in a heading. CSS has the property 'text-align' for that:

P { text-align: center }

H2 { text-align: center }

renders each line in a P or in a H2 centered between its margins, like this:

The lines in this paragraph are all centered between the paragraph's margins, thanks to the value 'center' of the CSS property 'text-align'.

CENTERING A BLOCK OR IMAGE

Sometimes it is not the text that needs to be centered, but the block as a whole. Or, phrased differently: we want the left and right margin to be equal. The way to do that is to set the margins to 'auto'. This is normally used with a block of fixed width, because if the block itself is flexible, it will simply take up all the available width. Here is an example:

P.blocktext {

margin-left: auto;

margin-right: auto;

width: 8em

}

...

<P class="blocktext">This rather...

This rather narrow block of text is centered. Note that the lines inside the block are not centered (they are left-aligned), unlike in the earlier example.

This is also the way to center an image: make it into block of its own and apply the margin properties to it. For example:

IMG.displayed {

display: block;

margin-left: auto;

margin-right: auto }

...

<IMG class="displayed" src="..." alt="...">

Explanation:

if you are pleased with answer in turn

please subscribe my youtube chanel(Ramakrishna Nallangari youtube channel) for my effort

search for

Ramakrishna Nallangari in search box

of youtube

Similar questions