默认设置高度为0; -webkit-transition:.3s all ease;transition:.3s all ease;opacity:0;height:0; 需要时添加高度即可 height:45px;opacity: 1;…
jquery slideDown slideUp 对于table无效,需要在table外面套一层div才可以使用…
jquery里面使用 slideDown 和  slideUp会有一个像素的偏差…
如何让文字垂直居中 需要设置div的height,line-height 为一样的值,如下所示: <div class="ui-bar ui-bar-e" style="height: 30px; line-height:30px;text-align:center;"> <strong>名称</strong> </div>…
1.background-repeat 不用说,常用直接no-repeat 2.background-size 常用的分为两个,一个是铺满:cover, 另一个是使图像适应宽高:contain 3.background-position 设置图片所处的位置:left/right/bottom/top/center…
设置了一定的宽度和高度.但无论是下面哪句都无效. word-break: break-word; word-wrap: break-word; 原因竟然是因为 /* white-space: nowrap; */ 将其改为normal即可: width: 145px; height: auto; word-break: break-word; word-wrap: break-word; white-space: normal;…
解决方法1: //border @mixin border($pos, $color) { content: ""; position: absolute; transform-origin: 0 0; -webkit-transform-origin: 0 0; @if $pos=='top'{ #{$pos}: 0px; left: 0px; right: 0px; border-#{$pos}: 1px solid $color; transform: scaleY(.5); -…
对select-option使用text-align:right;是无效的. 正确的姿势是:direction: ltr; 另外值得一提的是,通常还需要配合一点padding来美化.…
css操作(设置单个/多个样式.获取样式) //修改单个属性:括号之中直接是需要修改的样式名,值 css(name,value) //例:$("#one").css("backgroundColor","gray"); //修改多个属性:括号之中是一个对象css(obj)   //  例:  $("#one").css({ //           "background":"gray"…