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>

标签

By admin, 10 二月, 2015

SharedPreferences prefs = this.getSharedPreferences(
      "com.example.app", Context.MODE_PRIVATE);

读取设置:

String dateTimeKey = "com.example.app.datetime";

// use a default value using new Date()
long l = prefs.getLong(dateTimeKey, new Date().getTime()); 

编辑保存设置:

Date dt = getSomeDate();
prefs.edit().putLong(dateTimeKey, dt.getTime()).apply();

标签