skip to Main Content

I am student and learning html, i created index webpage in which i am finding difficulties in aligning my section tag contents to center of my screen, can some one please suggests what changes are needed.

enter image description here
enter image description here

suggestions on html to align it to center of screen

2

Answers


  1. To center the contents of a section tag on your webpage, you can use CSS to set the text-align property of the section tag to center.

    You can adjust the text-align property as per your requirements. If you want to center only the content of the section tag and not the section tag itself, you can use the display property as well.

    Login or Signup to reply.
  2. To align items horizontally in the center, you can use:

    display: flex;
    justify-content: center;
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search