摘要: <!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>发光输入框</title> <style type="text/css"> input{width: 280px;height: 30px;} textarea{width: 280 阅读全文
posted @ 2021-09-30 16:56 果果1024 阅读(18) 评论(0) 推荐(0)
摘要: 伪类本质上是为了弥补常规CSS选择器的不足,以便获取到更多信息; 伪元素本质上是创建了一个有内容的虚拟容器;(这个容器不包含任何DOM元素) CSS3中伪类和伪元素的语法不同; 可以同时使用多个伪类,而只能同时使用一个伪元素; 阅读全文
posted @ 2021-09-30 16:27 果果1024 阅读(40) 评论(0) 推荐(0)
摘要: input{ -webkit-appearance: none; -moz-appearance: none; appearance: none; display: inline-block;}input:after{ content: ""; font-size: 18px; display: i 阅读全文
posted @ 2021-09-30 16:21 果果1024 阅读(387) 评论(0) 推荐(0)
摘要: <template> <div> <div class="loading"></div> </div> </template> <script> export default { props: {}, data() { return {}; }, methods: {} }; </script> < 阅读全文
posted @ 2021-09-30 16:07 果果1024 阅读(29) 评论(0) 推荐(0)