在當前的web開發(fā)領(lǐng)域,H5CSS3已經(jīng)成為了必備技能之一。而對于企業(yè)招聘人員的面試題,關(guān)于H5CSS3新特性的問題也是必不可少的一環(huán)。下面我們來介紹一下常見的H5CSS3新特性面試題:
1.請介紹一下flex布局。
.flex-container { display: flex; flex-wrap: wrap; } .flex-item { flex: 0 0 25%; }
2.請介紹一下rem和em的區(qū)別及使用場景。
/* rem */ html { font-size: 16px; } h1 { font-size: 2.4rem; } /* em */ .parent { font-size: 16px; } .child { font-size: 1em; }
3.請介紹一下CSS3動畫。
@keyframes my-animation { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } .my-element { animation-name: my-animation; animation-duration: 2s; animation-iteration-count: infinite; }
4.請介紹一下CSS3過渡。
.my-element { transition: all 0.3s ease-in-out; } .my-element:hover { transform: scale(1.2); }
以上就是常見的H5CSS3新特性面試題,希望大家可以認真學習并掌握,加強自己的實際能力,從而更好地應對企業(yè)面試。