A web designer's head must be filled with a lot of knowledge related to his work. When it comes to CSS, it can help design websites, give them more design possibilities, and make your website more attractive in a simpler way, which is not easy to cover all aspects using traditional technologies. For the front-end and web pages, CSS is indeed a first-choice skill that needs to be mastered. Here are 9 very practical CSS3 properties and usage techniques. 1. Rounded corners effect When talking about rounded corners, I have frequently heard the following shortcomings in various discussions: implementation difficulties, compatibility difficulties, poor performance, etc. Today's Web design requires a variety of new development skills, so more and more front ends and pages are beginning to use HTML5. For HTML5, the requirements that previously had to be implemented using images can now be achieved through code. The "border-radius" added in CSS3 can be used to directly define the rounded corners of HTML elements and supports the latest versions of all browsers. I can achieve this with the following code: border-radius: 10px; /* CSS3 Property */We can also use the combined version below, or use it as a shorthand for the above code. -moz-border-radius: 10px 20px 30px 0;For more information about IE browser's support for CSS3 properties, you can read this English article. 2. Shadow effect Another interesting feature that can be achieved with CSS3 is the shadow effect (box-shadow), which can be achieved very simply through "box-shadow". Our common mainstream browsers all support this property, and Safari browser supports the optional prefixed -webkit-box-shadow property. The code includes: #myDiv{The following JavaScript code can also achieve the same shadow effect: object.style.boxShadow="20px 10px 7px #ccc"3. @Media Attribute @Media can directly specify the application style to introduce media attributes, which is used to change the web page style of the same style for different screen sizes. It also helps with styling changes in responsive web design. This can be achieved by simply modifying the following code. @media screen and (max-width: 480px) {And you can even specify CSS print preview using @media print as follows: @media print4. Add a gradient fill Gradients in CSS3 are another amazing property. It is not yet supported by all browsers, so it is best not to rely entirely on it for setting layouts. Here is a CSS-based gradient navigation bar for your reference. Here is how it is done. background: -webkit-gradient(linear, left top, left bottom, from(darkGray), to(#7A7A7A));5. Background size Background size is one of the most practical effects in CSS3, and many browsers currently support it. The Background size property allows you to control the size of the background image as you wish. In the past, the size of images used for backgrounds was not adjustable in the style. If you can't imagine how bad that was, you can try to recall that when you were making wallpaper on your computer desktop, you encountered a picture that you liked but it didn't fit the desktop size, and you had to fill it by tiling. Such a desktop is so ugly that anyone with decent aesthetic sense would have the urge to smash the screen. And now we can make the background image fit our page by changing one line of code. div6 @font face The attribute has proven its usefulness when it comes to transforming fonts using CSS3. In the past, due to various font licensing issues, only a few specific fonts could be selected during the design process. And through @font face we can customize the name of the font: @font-faceThen we can use the customized mySmashingFont font family anytime and anywhere through a simple code div{font-family:mySmashingFont;}7. clearfix attribute If Overflow: hidden clearing the floating effect is not your first choice, then clearfix should be your better choice, which allows you to handle different HTML elements individually. .clearfix { .clearfix:after {8. Margin: 0 auto Margin: 0 auto implements the most basic function in CSS. We often use it to implement the simplest and most commonly used function - centering. Although CSS itself does not have a function to specify centering, it is still very simple to achieve this function by specifying a margin through auto margin. With this property, you can center an element with a simple piece of code. But it should be noted that, as in the following code, a width must be set for the div. .myDiv {9. Overflow: hidden Overflow: Hidden, its main function is to hide overflow, and as mentioned above, people rarely use its other function, which is to clear floats. divVia: Smashing HUB |
<<: How to remove the "Enter" in the form, "Submit" and "Enter != Submit"
>>: CSS Naming: BEM, scoped CSS, CSS modules and CSS-in-JS explained
Table of contents 1. Basic conditions for databas...
1. Unzip the downloaded file as shown below . 2. ...
1. Docker Compose Overview Compose is a tool for ...
Docker-compose deployment configuration jenkins 1...
The purpose of using HTML to mark up content is t...
1. Introduction A few days ago, I encountered a p...
1. Add a hard disk 2. Check the partition status:...
<iframe src=”you page's url” width=”100″ he...
nginx traffic control Rate-limiting is a very use...
Everyone must know the composition of the box mod...
1. How do I remove the blank space of a few pixels...
1. First, the pure HTML file must have an entry i...
Non-orthogonal margins When margin is used, it wi...
I have been studying the source code of Vue recen...
Table of contents Variable Scope The concept of c...