CSS4 background color가 프린트할 때 종이에 안나올 때 css 로 할 경우 .scheduleTable-cell {border: 1px solid black;padding: 2px;min-width: 1.5rem;text-align: center;-webkit-print-color-adjust: true;} inline으로 2024. 7. 2. div 안의 이미지에 공백이 생기는 현상 img가 inline 이라서 생긴다고 한다. 해결방법 : img { vertical-align : bottom; } 2023. 4. 21. 애니메이션 끝나고 그대로 멈춰있게 만드는 방법 animation: moveupx 3s linear , moveupy 3s cubic-bezier(0.41, 0.04, 0.83, 0.53); animation-fill-mode: forwards; 2023. 3. 13. Transform, Transition, animation속성 1. Transform속성 1) rotate 2) scale 3) skew 4) translate - 움직이는것 적용 : .classnamehere{ transform: translate(100px, 200px) } prefix접두사를 사용한다면? .translate{ -webkit-transform:translate(100px,200px); -moz-transform:translate(100px,200px); -ms-transform:translate(100px,200px); -o-transform:translate(100px,200px); } 문제) 200px 200px 초록색 박스에 마우스를 올리면 width가 2초동안 400px로 변하는 코드를 css 만드시오 안눙하세요 답 : .parent { .. 2022. 8. 26. 이전 1 다음