div class(index.php)没有看到css文件夹

时间:2018-01-31 07:07:47

标签: javascript php html css

我想通过在index.php中执行div class = flags来访问style.css文件中的类标志css。当我编写如下代码时,我没有得到结果。图片看起来较低。我想并排拍照。

的index.php

<div class="flags">
  <ul>
    <li><a href="?dil=tr"><img src="http://cdn2.iconfinder.com/data/icons/flags/flags/32/German.png" /></a></li>
    <li><a href="?dil=en"><img src="https://cdn2.iconfinder.com/data/icons/flags/flags/32/England.png" /></a></li>
  </ul>
</div>

的style.css

.flags {
  width: 100px;
  height: 320px;
  float: right;
}
.flags ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.flags ul li {
  display: inline;
  margin: 0;
  padding: 0;
}

3 个答案:

答案 0 :(得分:1)

请在index.php页面

中添加这些行
<link rel="stylesheet" type="text/css" href="style.css">

请注意,提到的路径是有效的。

答案 1 :(得分:0)

问题是href中的间距,即:

<link href="css/style.css" rel="stylesheet" type="text/css">

而不是

<link href = "css / style.css" rel = 'stylesheet' type = 'text / css'>

css / style.csscss/style.css非常不同,就像你说文件夹名称后面有一个空格,文件名前面有空格。

您将把它添加到:

<head>
    <title>Some title</title>
    <link href="css/style.css" rel="stylesheet" type="text/css">
</head>

答案 2 :(得分:0)

使用下面的代码而不是.flags ul li

.flags ul li {
  display: inline;
  margin: 0;
  padding: 0;
  float:left;
}

float属性指定元素应该如何浮动。