Why html page isn't fit to 100%?

后端 未结 3 1564
不知归路
不知归路 2021-01-23 07:05

Whenever i want to make a html page i have problem with this, why html page is less than 100%? Let me explain in example:

3条回答
  •  盖世英雄少女心
    2021-01-23 07:10

    You can float the divs instead of using inline-block to get the effect you want.

          html, body
          {
            margin: 0;
            padding: 0;
            width: 100%;
          }
          .row
          {
            width: 100%;
            margin: 0;
            padding: 0;  
          }
          .col-1
          {
            width: 10%;
            margin: 0;
            padding: 0;
            float: left;
          }
      
        
    Some text
    Some text
    Some text
    Some text
    Some text
    Some text
    Some text
    Some text
    Some text
    Some text

提交回复
热议问题