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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

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)

Hot Topics

Java Tutorial
1663
14
PHP Tutorial
1264
29
C# Tutorial
1237
24
Google Fonts   Variable Fonts Google Fonts Variable Fonts Apr 09, 2025 am 10:42 AM

I see Google Fonts rolled out a new design (Tweet). Compared to the last big redesign, this feels much more iterative. I can barely tell the difference

How to Create an Animated Countdown Timer With HTML, CSS and JavaScript How to Create an Animated Countdown Timer With HTML, CSS and JavaScript Apr 11, 2025 am 11:29 AM

Have you ever needed a countdown timer on a project? For something like that, it might be natural to reach for a plugin, but it’s actually a lot more

HTML Data Attributes Guide HTML Data Attributes Guide Apr 11, 2025 am 11:50 AM

Everything you ever wanted to know about data attributes in HTML, CSS, and JavaScript.

A Proof of Concept for Making Sass Faster A Proof of Concept for Making Sass Faster Apr 16, 2025 am 10:38 AM

At the start of a new project, Sass compilation happens in the blink of an eye. This feels great, especially when it’s paired with Browsersync, which reloads

How We Created a Static Site That Generates Tartan Patterns in SVG How We Created a Static Site That Generates Tartan Patterns in SVG Apr 09, 2025 am 11:29 AM

Tartan is a patterned cloth that’s typically associated with Scotland, particularly their fashionable kilts. On tartanify.com, we gathered over 5,000 tartan

How to Build Vue Components in a WordPress Theme How to Build Vue Components in a WordPress Theme Apr 11, 2025 am 11:03 AM

The inline-template directive allows us to build rich Vue components as a progressive enhancement over existing WordPress markup.

PHP is A-OK for Templating PHP is A-OK for Templating Apr 11, 2025 am 11:04 AM

PHP templating often gets a bad rap for facilitating subpar code — but that doesn&#039;t have to be the case. Let’s look at how PHP projects can enforce a basic

Programming Sass to Create Accessible Color Combinations Programming Sass to Create Accessible Color Combinations Apr 09, 2025 am 11:30 AM

We are always looking to make the web more accessible. Color contrast is just math, so Sass can help cover edge cases that designers might have missed.

See all articles