摘要: input[type=text] 常规输入栏: 1. border-box将确保元素的总宽度和高度中包括内边距(填充)和最终的边框。 2. 点击后,会有默认效果 <!DOCTYPE html> <html> <head> <style> input[type=text] { width: 100%; 阅读全文
posted @ 2022-10-14 17:30 新兵蛋Z 阅读(3533) 评论(0) 推荐(1)
摘要: 1. 允许我们在元素的总宽度和高度中包括内边距和边框,这样可以控制最外总边框的宽度和高度。 <!DOCTYPE html> <html> <head> <style> .div1 { width: 300px; height: 100px; border: 1px solid blue; box-s 阅读全文
posted @ 2022-10-14 16:53 新兵蛋Z 阅读(118) 评论(0) 推荐(0)