Home Web Front-end CSS Tutorial Comparison of usage of CSS frameworks and typography techniques

Comparison of usage of CSS frameworks and typography techniques

Jan 16, 2024 am 10:57 AM
When doing typesetting

Comparison of usage of CSS frameworks and typography techniques

CSS framework is often used to speed up the development of web pages and improve development efficiency. However, their usage is different from traditional CSS typesetting, and we need to study it carefully. This article will explain the different usage methods and techniques of CSS framework and traditional CSS typesetting, and attach specific code examples.

Basic concept of CSS framework
CSS framework is a collection of encapsulated CSS codes, which is designed to help developers quickly establish the skeleton or layout of a website, thereby shortening development time. Mainly including layout, typesetting, responsive design, interactive effects, etc. Common CSS frameworks include Bootstrap, Foundation, Semantic UI, etc. These frameworks provide a set of default styles, which can be modified or overridden to achieve personalized design.

Advantages and Disadvantages of CSS Framework
The advantage of CSS framework is to improve development efficiency, reduce duplication of labor, and enable developers to focus more on the functionality and interaction design of the website. In addition, CSS frameworks generally include responsive design functions, which can achieve cross-device adaptation. Moreover, since these frameworks have been extensively tested and used, their compatibility and reliability are guaranteed.

The disadvantage is that the framework may cause the style of the website to become more ordinary or uniform. If all websites used the same framework, they would lose their individuality and differentiation. In addition, the development of frameworks is often relatively rapid. If not followed up in time, it will lead to obsolete code and huge update costs.

How to use the CSS framework
The way to use the CSS framework is usually to import some CSS files and then use the classes in them to implement the style of the website. For example, using the Bootstrap framework, you can import files as follows:

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/%20bootstrap.min.css">

Then, reference the corresponding class in HTML to implement the style. For example, to implement a page with a navigation bar and carousel, you can use the following code:

<nav class="navbar navbar-expand-lg navbar-light bg-light">
  <a class="navbar-brand" href="#">Brand</a>
  <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
    <span class="navbar-toggler-icon"></span>
  </button>
  <div class="collapse navbar-collapse" id="navbarNav">
    <ul class="navbar-nav">
      <li class="nav-item active">
        <a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
      </li>
      <li class="nav-item">
        <a class="nav-link" href="#">Features</a>
      </li>
      <li class="nav-item">
        <a class="nav-link" href="#">Pricing</a>
      </li>
      <li class="nav-item">
        <a class="nav-link disabled" href="#">Disabled</a>
      </li>
    </ul>
  </div>
</nav>

<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
  <ol class="carousel-indicators">
    <li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
    <li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
    <li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
  </ol>
  <div class="carousel-inner">
    <div class="carousel-item active">
      <img class="d-block w-100 lazy"  src="/static/imghw/default1.png"  data-src="https://via.placeholder.com/800x400?text=Slider%201"  alt="First slide">
    </div>
    <div class="carousel-item">
      <img class="d-block w-100 lazy"  src="/static/imghw/default1.png"  data-src="https://via.placeholder.com/800x400?text=Slider%202"  alt="Second slide">
    </div>
    <div class="carousel-item">
      <img class="d-block w-100 lazy"  src="/static/imghw/default1.png"  data-src="https://via.placeholder.com/800x400?text=Slider%203"  alt="Third slide">
    </div>
  </div>
  <a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
    <span class="carousel-control-prev-icon" aria-hidden="true"></span>
    <span class="sr-only">Previous</span>
  </a>
  <a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
    <span class="carousel-control-next-icon" aria-hidden="true"></span>
    <span class="sr-only">Next</span>
  </a>
</div>
Copy after login

In the above code, a navigation bar is first defined and the navbar class provided by Bootstrap is used; then it is defined I created a carousel chart and used the carousel class and some related classes provided by Bootstrap to implement the layout and style of the carousel chart. These classes are all predefined.

Tips of CSS framework
Tips of CSS framework include flexible use of classes, overriding default styles, and achieving personalized design through custom classes.

  1. Flexible use of classes
    CSS framework usually defines a large number of CSS classes, and we can select and use these classes according to our needs. The classes of CSS framework are usually divided according to functions or components, such as buttons, navigation bars, carousels, tables, etc. We can quickly build the layout and style of the website by using these classes.
  2. Override the default style
    The default style of the CSS framework may not be suitable for our website, or it may require personalized design. If we encounter this situation, we can use custom CSS rules to override the default styles. It should be noted that overriding the default style may cause problems with the layout and style of the website, so it needs to be used with caution. You can use your browser's developer tools to inspect an element's style properties to determine which CSS properties and values ​​need to be overridden.

For example, if you need to modify the background color and font color of the Bootstrap navigation bar, you can use the following CSS rules:

.navbar {
    background-color: #333;
    color: white;
}
Copy after login

Here the navbar class is used to select the navigation bar, and the background is modified -color attribute and the value of the color attribute.

  1. Personalized design through custom classes
    Although there are many classes in the CSS framework, they may not fully meet our design needs. At this time, we need to use custom classes to achieve personalization. design. You can define your own classes in CSS files and then use these classes in HTML to implement your design needs. It should be noted that before using custom classes, you need to understand the layout and style rules of the classes provided by the CSS framework to avoid conflicts between custom classes and the framework's classes, which may cause style failure or problems.

The following is an example of using a custom class to implement styles:

.custom-text {
    font-size: 24px;
    font-weight: bold;
    color: #FF5733;
}
Copy after login

A custom class .custom-text is defined here to implement some font styles. Then use this class in HTML:

<p class="custom-text">这是自定义的文字样式。</p>
Copy after login

This code will make this text use a custom style.

Summary
The CSS framework is a tool that improves development efficiency and can help developers quickly build the layout and style of a website. However, when using CSS frameworks, you need to pay attention to how they are used differently from traditional CSS layout. You must flexibly use the framework's classes, reasonably override the default styles, and use custom classes to achieve personalized design. Only by mastering these skills can you effectively use the CSS framework and continuously improve development efficiency and website quality.

The above is the detailed content of Comparison of usage of CSS frameworks and typography techniques. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Demystifying Screen Readers: Accessible Forms & Best Practices Demystifying Screen Readers: Accessible Forms & Best Practices Mar 08, 2025 am 09:45 AM

This is the 3rd post in a small series we did on form accessibility. If you missed the second post, check out "Managing User Focus with :focus-visible". In

Create a JavaScript Contact Form With the Smart Forms Framework Create a JavaScript Contact Form With the Smart Forms Framework Mar 07, 2025 am 11:33 AM

This tutorial demonstrates creating professional-looking JavaScript forms using the Smart Forms framework (note: no longer available). While the framework itself is unavailable, the principles and techniques remain relevant for other form builders.

Adding Box Shadows to WordPress Blocks and Elements Adding Box Shadows to WordPress Blocks and Elements Mar 09, 2025 pm 12:53 PM

The CSS box-shadow and outline properties gained theme.json support in WordPress 6.1. Let&#039;s look at a few examples of how it works in real themes, and what options we have to apply these styles to WordPress blocks and elements.

Working With GraphQL Caching Working With GraphQL Caching Mar 19, 2025 am 09:36 AM

If you’ve recently started working with GraphQL, or reviewed its pros and cons, you’ve no doubt heard things like “GraphQL doesn’t support caching” or

Making Your First Custom Svelte Transition Making Your First Custom Svelte Transition Mar 15, 2025 am 11:08 AM

The Svelte transition API provides a way to animate components when they enter or leave the document, including custom Svelte transitions.

Comparing the 5 Best PHP Form Builders (And 3 Free Scripts) Comparing the 5 Best PHP Form Builders (And 3 Free Scripts) Mar 04, 2025 am 10:22 AM

This article explores the top PHP form builder scripts available on Envato Market, comparing their features, flexibility, and design. Before diving into specific options, let's understand what a PHP form builder is and why you'd use one. A PHP form

Show, Don't Tell Show, Don't Tell Mar 16, 2025 am 11:49 AM

How much time do you spend designing the content presentation for your websites? When you write a new blog post or create a new page, are you thinking about

What the Heck Are npm Commands? What the Heck Are npm Commands? Mar 15, 2025 am 11:36 AM

npm commands run various tasks for you, either as a one-off or a continuously running process for things like starting a server or compiling code.

See all articles