摘要: Most commonly used tags in HTML Last Updated : 08 Mar, 2024 Most commonly used tags in HTML refer to HTML elements frequently utilized for structuring 阅读全文
posted @ 2024-06-01 20:19 emanlee 阅读(4) 评论(0) 推荐(0) 编辑
摘要: CSS tutorials (w3school) https://www.schoolsw3.com/css/index.php (Русский язык) https://www.w3schools.com/css/css_intro.asp (English) https://www.w3sc 阅读全文
posted @ 2024-06-01 19:10 emanlee 阅读(24) 评论(0) 推荐(0) 编辑
摘要: https://www.w3schools.com/css/css_math_functions.asp The CSS math functions allow mathematical expressions to be used as property values. Here, we wil 阅读全文
posted @ 2024-06-01 17:52 emanlee 阅读(4) 评论(0) 推荐(0) 编辑
摘要: https://www.w3schools.com/css/css_important.asp What is !important? The !important rule in CSS is used to add more importance to a property/value than 阅读全文
posted @ 2024-06-01 17:48 emanlee 阅读(3) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/670589063 CSS Specificity(CSS 特异性)是一个用来决定当多个CSS规则应用于同一个元素时,哪个规则将优先应用的机制。 What is Specificity? If there are two or more CS 阅读全文
posted @ 2024-06-01 17:43 emanlee 阅读(3) 评论(0) 推荐(0) 编辑
摘要: https://www.w3schools.com/css/css_units.asp CSS Units CSS has several different units for expressing a length. Many CSS properties take "length" value 阅读全文
posted @ 2024-06-01 17:28 emanlee 阅读(2) 评论(0) 推荐(0) 编辑
摘要: https://www.w3schools.com/css/css_website_layout.asp Website Layout A website is often divided into headers, menus, content and a footer: There are to 阅读全文
posted @ 2024-06-01 17:19 emanlee 阅读(3) 评论(0) 推荐(0) 编辑
摘要: https://www.w3schools.com/css/css_counters.asp CSS counters are "variables" maintained by CSS whose values can be incremented by CSS rules (to track h 阅读全文
posted @ 2024-06-01 17:09 emanlee 阅读(9) 评论(0) 推荐(0) 编辑
摘要: https://www.w3schools.com/css/css_form.asp The look of an HTML form can be greatly improved with CSS: <!DOCTYPE html> <html> <style> input[type=text], 阅读全文
posted @ 2024-06-01 17:04 emanlee 阅读(2) 评论(0) 推荐(0) 编辑
摘要: https://www.w3schools.com/css/css_image_sprites.asp Image Sprites An image sprite is a collection of images put into a single image. A web page with m 阅读全文
posted @ 2024-06-01 16:46 emanlee 阅读(4) 评论(0) 推荐(0) 编辑
摘要: https://www.w3schools.com/css/css_image_gallery.asp CSS can be used to create an image gallery. Image Gallery The following image gallery is created w 阅读全文
posted @ 2024-06-01 16:15 emanlee 阅读(7) 评论(0) 推荐(0) 编辑
摘要: https://www.w3schools.com/css/css_dropdowns.asp CSS Dropdowns Create a hoverable dropdown with CSS. Demo: Dropdown Examples Move the mouse over the ex 阅读全文
posted @ 2024-06-01 16:12 emanlee 阅读(4) 评论(0) 推荐(0) 编辑
摘要: https://www.w3schools.com/css/css_navbar.asp Demo: Navigation Bars Navigation Bars Having easy-to-use navigation is important for any web site. With C 阅读全文
posted @ 2024-06-01 15:55 emanlee 阅读(3) 评论(0) 推荐(0) 编辑
摘要: https://www.w3schools.com/css/css_image_transparency.asp CSS Opacity / Transparency The opacity property specifies the opacity/transparency of an elem 阅读全文
posted @ 2024-06-01 15:36 emanlee 阅读(5) 评论(0) 推荐(0) 编辑
摘要: https://www.w3schools.com/css/css_align.asp Center Align Elements To horizontally center a block element (like <div>), use margin: auto; Setting the w 阅读全文
posted @ 2024-06-01 13:41 emanlee 阅读(5) 评论(0) 推荐(0) 编辑
摘要: https://www.w3schools.com/css/css_inline-block.asp The display: inline-block Value Compared to display: inline, the major difference is that display: 阅读全文
posted @ 2024-06-01 13:28 emanlee 阅读(4) 评论(0) 推荐(0) 编辑
摘要: https://www.w3schools.com/css/css_float.asp CSS Layout - float and clear The CSS float property specifies how an element should float. The CSS clear p 阅读全文
posted @ 2024-06-01 11:46 emanlee 阅读(4) 评论(0) 推荐(0) 编辑
摘要: https://www.w3schools.com/css/css_overflow.asp CSS Layout - Overflow The CSS overflow property controls what happens to content that is too big to fit 阅读全文
posted @ 2024-06-01 11:39 emanlee 阅读(8) 评论(0) 推荐(0) 编辑
摘要: https://www.w3schools.com/css/css_z-index.asp CSS Layout - The z-index Property The z-index property specifies the stack order of an element. The z-in 阅读全文
posted @ 2024-06-01 11:32 emanlee 阅读(6) 评论(0) 推荐(0) 编辑
摘要: https://www.w3schools.com/css/css_positioning.asp CSS Layout - The position Property The position property specifies the type of positioning method us 阅读全文
posted @ 2024-06-01 11:25 emanlee 阅读(5) 评论(0) 推荐(0) 编辑