Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/35.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
我的Html页面没有响应_Html_Css - Fatal编程技术网

我的Html页面没有响应

我的Html页面没有响应,html,css,Html,Css,我已经创建了html页面。此页面不适用于有响应的用户 My Code <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> body { width:1333px; height:800px; } .

我已经创建了html页面。此页面不适用于有响应的用户

My Code

 <!DOCTYPE html>
    <html>
    <head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
    body {
    width:1333px;
    height:800px;
    }
    .wrapper {
    width:"100%;
    height:100%;
    border:1px solid #000000;
    }
    </style>
    </head>
    <body>
    <div class="wrapper">
    <div>
    <h2>London</h2>
      <p>London is the capital of England.</p>
      <p>It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.</p>
      <h2>London</h2>
      <p>London is the capital of England.</p>
      <p>It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.</p>
      <h2>London</h2>
      <p>London is the capital of England.</p>
      <p>It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.</p>
      <h2>London</h2>
      <p>London is the capital of England.</p>
      <p>It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.</p>
    </div>

    </div>
    </body>
    </html>
我的代码
身体{
宽度:1333px;
高度:800px;
}
.包装纸{
宽度:“100%;
身高:100%;
边框:1px实心#000000;
}
伦敦
伦敦是英国的首都

它是英国人口最多的城市,拥有超过1300万居民的大都市区

伦敦 伦敦是英国的首都

它是英国人口最多的城市,拥有超过1300万居民的大都市区

伦敦 伦敦是英国的首都

它是英国人口最多的城市,拥有超过1300万居民的大都市区

伦敦 伦敦是英国的首都

它是英国人口最多的城市,拥有超过1300万居民的大都市区

我已经创建了html页面,提供了html代码,如何在移动、选项卡模式下显示全文

div {
  display: flex;       // others
  display: table-cell; // ie9
  display: -ms-flexbox; //ie10
}
您可以将其用于ie9,而将flexbox用于其他应用程序


是的,你是对的。Flex在IE9中不起作用。这是一句话:那不起作用。“其他人”将使用表格单元格,因为你是第二个/最后一个列出的。谢谢你的回答