By admin, 13 二月, 2015

#triangle-up {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid red;
}

相关链接:怎样用CSS画圆

标签

By admin, 12 二月, 2015

<div id="outer" style="width:100%">  
    <div id="inner">Foo foo</div>
</div>

方法一,需要制定里面DIV的宽度:
#inner {
    width: 50%;
    margin: 0 auto;
}

方法二:仅支持IE8+
#inner {
    display: table;
    margin: 0 auto;
}

标签

By admin, 12 二月, 2015

<style>
::-webkit-input-placeholder { /* WebKit browsers */
    color:    #909;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #909;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #909;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
   color:    #909;
}
</style>

标签

By admin, 12 二月, 2015

<style>
.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
</style>

<p>
  Selectable text.
</p>
<p class="noselect">
  Unselectable text.
</p>

标签