让一个块级元素在某区域内上下左右居中

<div class="container">
<div class="box"></div>
</div>

<style>
.container {
border: 1px solid #000;
width: 300px;
height: 300px;
position: relative;
}

.box {
border: 1px solid #000;
width: 50px;
height: 50px;

/* magic below */
position: absolute;
margin: auto;
left: 0;
right: 0;
top: 0;
bottom: 0;
/* magic end */
}
</style>

文字模糊效果

*{

color: transparent;
text-shadow: #111 0 0 5px;

}

实时编辑CSS

<html>

<body>
    <style style="display:block" contentEditable>
        body { color: blue }
    </style>
</body>

</html>


苏生不惑
18.9k 声望1.9k 粉丝

« 上一篇
linux及git记录
下一篇 »
jquery记录