一.上下垂直居中
1.inline-block 就是既可以像inline水平排列,又可以设置高宽
2.verticle-align属性只会在inline-block水平的元素上起作用,父元素(inline-block\block)必须含有line-height(inline元素有无皆可),子元素中的(inline-block/inline元素)vertical-align才能起作用
垂直居中另外一种方法:
.container {
border: 1px solid blue;
height: 200px; /* maybe any height */
}
.vertical {
position: relative;
top: 50%;
transform: translateY(-50%);
border: 1px solid green;
}
3.line-height:行高 设置文字间上下距离
height:高度 就是定义一个层 或某样东西的高度啦
二.左右居中 text-align:center
三.文字靠左图片靠右
父元素设置relative 子元素设置absolute。在通过高度计算出right:某某px,top:某某px
定时器
function
onNew() {
var
currentDate =
new
Date();
if(
currentDate.
getDate() >=
26){
// console.log(currentDate.getMinutes())
// if(currentDate.getMinutes() >= 55){
$(
'.timeoff').
hide();
$(
'.timeon').
show();
}
}