CSS html大雜燴

css屬性:陰影 box-shadow:>=ie9
html: pacleholder >ie9 //can i use 裏顯示ie10不支持,但實踐驗證已支持
css屬性 轉換 transform >= ie9css

動畫設置:html

·animation: ani-load-loop 1s linear infinite;web

animation-duration: 1s;持續時間
animation-timing-function: linear;速度
animation-delay: 0s;延遲
animation-iteration-count: infinite;循環次數
animation-direction: normal;
animation-fill-mode: none;
animation-play-state: running;
animation-name: ani-load-loop;動畫名稱
// Loading for loop
.uelement-load-loop{
    animation: ani-load-loop 1s linear infinite;
}

@keyframes ani-load-loop {
    from { transform: rotate(0deg);}
    50%  { transform: rotate(180deg);}
    to   { transform: rotate(360deg);}
}

@keyframes ani-load-loop
0% {
transform: rotate(0deg);
}
50% {
    transform: rotate(180deg);
}
100% {
    transform: rotate(360deg);
}

HTML spellcheck 屬性:語法檢查
Internet Explorer 10, Firefox, Opera, Chrome, 和 Safari 瀏覽器支持 spellcheck 屬性。
注意: Internet Explorer 9 及更早IE版本不支持 spellcheck 屬性。
<p contenteditable="true" spellcheck="true">這是可編輯的段落。請試着編輯文本。</p>瀏覽器

定義和用法
spellcheck 屬性規定是否對元素內容進行拼寫檢查。iview

可對如下文本進行拼寫檢查:oop

類型爲 text 的 input 元素中的值(非密碼)
textarea 元素中的值
可編輯元素中的值字體

css 屬性 display:table 》 border-collapseflex

{border-collapse:collapse;}

collapse 若是可能,邊框會合併爲一個單一的邊框。會忽略 border-spacing 和 empty-cells 屬性
separate 默認值。邊框會被分開。不會忽略 border-spacing 和 empty-cells 屬性
inherit 規定應該從父元素繼承 border-collapse 屬性的值動畫

css 屬性 font-variant
值 描述
normal 默認值。瀏覽器會顯示一個標準的字體。
small-caps 瀏覽器會顯示小型大寫字母的字體。
inherit 規定應該從父元素繼承 font-variant 屬性的值。spa

css 屬性 display:table的用法
display: table;//父元素
display: table-cell;//子元素

-webkit-font-smoothing:

line-height vertical-align的原理

iview兼容ie9:https://www.jianshu.com/p/642...
parcel介紹:https://www.cnblogs.com/aaron...
JavaScript中的composition event: https://www.jianshu.com/p/5c7...
grid vs flex: https://zhuanlan.zhihu.com/p/...

相關文章
相關標籤/搜索