我正在使用CentOS服务器.我有一个命名的文件夹test位于/home/server/folder/test.我需要将目录复制test到/home/server/.我该怎么做?
我将drupal 7从服务器(实时站点)移动到我的localhost(xampp).我更改settings.php(files/defualt/settings.php)数据库连接并从mysql数据库中删除缓存.现在在加载索引,我看到我的网站没有CSS设计(只有文本),看到这个错误:
**Error message**:
The file could not be created.
The file could not be created.
The file could not be created.
The file could not be created.
The file could not be created.
Run Code Online (Sandbox Code Playgroud)
我认为drupal不会创建css/js压缩文件.如何解决此错误?谢谢你的帮助.
我把div用class="inner-box2"后div用class="inner-box"。
HTML:
<div class="box">
<div class="inner-box"></div>
<div class="inner-box2"></div>
</div>
Run Code Online (Sandbox Code Playgroud)
CSS:
.box {
position: relative;
width: 400px;
height: 400px;
border: solid 10px red;
}
.inner-box {
border: solid 10px blue;
position: absolute;
height:150px;
width:380px;
}
.inner-box2 {
border: solid 10px green;
}
Run Code Online (Sandbox Code Playgroud)
现在,我需要显示div(inner-box2)afterdiv(inner-box)但在我的代码中div(inner-box2)显示在div(inner-box). 如何解决这个问题?看在线演示