最新回答 / 慕移动9181930
varmyarr=[0,1,2],[0,1,2,3,4];
myarr[3][5]=3*5;
这样对么??
为什么没有人写那个简单的么?知道了,我以为定义的hobby数组是全局的呢,知道哪里错了
text-section运用了relative之后,它会使整个页面宽度增大,x轴会出现滚动条的。。。
这个是因为reletive左边加了50个像素的边距,你把前面的width55%变成max-width55%就可以咯!
这个是因为reletive左边加了50个像素的边距,你把前面的width55%变成max-width55%就可以咯!
2017-07-19
谢谢老师! 课程整体思路很有启发 也学到了诸多小技巧 唯一的疑问是css的编写 感觉有些繁复凌乱 接下来会继续看老师的其他课程
2017-07-18
#banner .inner h1 {
margin: 0;
padding: 20px;
border-top: 1px solid white;
border-bottom: 1px solid white;
}
添加两条白色横杠
margin: 0;
padding: 20px;
border-top: 1px solid white;
border-bottom: 1px solid white;
}
添加两条白色横杠
2017-07-15
#banner .inner {
max-width: 300px;
text-align: center;
margin: 0 auto;
position: relative;
top: 160px;
color: white;
}
字体变白
max-width: 300px;
text-align: center;
margin: 0 auto;
position: relative;
top: 160px;
color: white;
}
字体变白
2017-07-15
nav .logo {
float: left;
padding-left: 10px;
}
否则padding没效果的
float: left;
padding-left: 10px;
}
否则padding没效果的
2017-07-15
header跟content之间有空白 是因为<h2>有margin
normalize没有把它重置掉
normalize没有把它重置掉
2017-07-15