發表文章

目前顯示的是 9月, 2022的文章

陳柏宇.CSS.Borders.border-radius

background-color: gray; border: 10px solid yellow; border-radius: 50px; padding: 5px; color: white; font-size: 3em; } 陳柏宇.CSS.Borders.border-radius 德 明 陳 柏 宇 學習心得

陳柏宇程式設計

 <html lang="zh-TW"> <SCRPIT>   function myFristJS()   {   alert("我學會HTML,CSS與JavaScript三種程式語言");//註解alert警報   } </SCRIPT> <style>     .wrapper {         height: 100%;         overflow: hidden;         display: flex;         justify-content: center;         align-items: center;}     .sides {         position: relative;         animation: 0.7s customBounce ease 0.4s both;         display: grid;         grid-template-columns: 50vw 50vw;}     @keyframes customBounce {         0% {    grid-gap: 100vw;  }         12% {    grid-gap: 90vw;  }         24% {    grid-gap: 57vw;  }         36% {    grid-gap: 3v...