본문 바로가기

CSS34

css animation : position property 2023. 11. 15.
css3 properties by category CSS3 Properties The following section contains a list of CSS3 properties along with a brief description. CSS PropertiesOrder by Alphabet The following section contains a complete list of standard properties belonging to the latest CSS3 specifications. All the properties are listed alphabetically. Property Description align-content Specifies the alignment of flexible container's items within the .. 2023. 8. 27.
pseudo class 슈도 클래스 What are Pseudo-classes?// 슈도 클래스란? A pseudo-class is used to define a special state of an element.// 슈도 클래스란? 엘리먼트의 특별한 상태를 정의하기 위해 사용된다. For example, it can be used to:// 예를 들어 Style an element when a user mouses over it //엘리먼트에 마우스를 올릴때, 스타일 변경 Style visited and unvisited links differently //링크에 방문후 방문전 스타일 차이 Style an element when it gets focus //엘리먼트가 초점을 가진경우 스타일 변경 2023. 8. 17.
use DOM MutationObserver! (function(){ const div=document.createElement("div"); div.setAttribute('id','transcript'); div.setAttribute('width',"100%"); div.setAttribute('height','200px'); div.setAttribute('style',"position:absolute;width:100%;background:skyblue;z-index:9999;text-align:center;font-size:38px;"); if(document.querySelector('#transcript')){document.querySelector('#transcript').remove();} document.body.insertBe.. 2023. 8. 5.