摘要:
1 <style> 2 div { 3 width: 0; 4 height: 0; 5 border-top: 40px solid transparent; 6 border-left: 40px solid transparent; 7 border-right: 40px solid tra 阅读全文
摘要:
图片中的 alt属性是在图片不能正常显示时出现的文本提示。alt有利于SEO优化 图片中的 title属性是在鼠标在移动到元素上的文本提示。 阅读全文
摘要:
transtion transition-property 规定设置过渡效果的 CSS 属性的名称。 transition-duration 规定完成过渡效果需要多少秒或毫秒。 transition-timing-function 规定速度效果的速度曲线。 transition-delay 定义过渡 阅读全文
摘要:
display:flex; 在父元素设置,子元素受弹性盒影响,默认排成一行,如果超出一行,按比例压缩 flex:1; 子元素设置,设置子元素如何分配父元素的空间,flex:1,子元素宽度占满整个父元素 align-items:center 定义子元素在父容器中的对齐方式,center 垂直居中 ju 阅读全文