Example code for implementing a three-column layout with CSS, where the middle column is adaptive and changes width with text size

Example code for implementing a three-column layout with CSS, where the middle column is adaptive and changes width with text size

The questions encountered in Baidu interviews need to achieve the following layout effects

The size of the purple column in the middle will widen/narrow with the amount of fonts, and the extra text will be automatically omitted as [...]. The green column on the right should be closely connected to the purple column. The main operations for the purple column are:

1.flex: 0 1 auto (adaptive)

2.text-overflow:ellipsis; (automatically omit text)

overflow:hidden;

white-space: nowrap;

The complete code is as follows

// CSS part.container {
  display: flex;
}
.pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: pink;
}
.name {
  flex:0 1 auto;
  height: 100px;
  background-color: purple;
  text-overflow:ellipsis;
  overflow:hidden;
  white-space: nowrap;
}
.tag {
  width: 100px;
  height: 100px;
  text-align: center;
  line-height: 100px;
  background-color: seagreen;
}
// HTML part <div class="container">
    <div class="pic"></div>
    <div class="name">
        zhasansndfdkfnald
    </div>
    <div class="tag">Designer</div>
</div>

Summarize

This concludes this article about how to use CSS to implement a three-column layout with the middle column adaptive and changing width with text size. For more relevant CSS three-column layout content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  Util module in node.js tutorial example detailed explanation

>>:  Use iframe to submit form without refreshing the page

Recommend

Design theory: the basics of font design

<br />Words are the inevitable product of hu...

Introduction to the deletion process of B-tree

In the previous article https://www.jb51.net/arti...

Detailed explanation of command to view log files in Linux environment

Table of contents Preface 1. cat command: 2. more...

Specific use of MySQL binlog_ignore_db parameter

Preface: After studying the previous article, we ...

Getting Started with Vue 3.0 Custom Directives

Table of contents 1. Custom instructions 1. Regis...

Application and implementation of data cache mechanism for small programs

Mini Program Data Cache Related Knowledge Data ca...

Steps to package and release the Vue project

Table of contents 1. Transition from development ...

Repair solution for inconsistent MySQL GTID master and slave

Table of contents Solution 1: Rebuild Replicas Pr...

Linux kernel device driver virtual file system notes

/******************** * Virtual File System VFS *...

Detailed explanation of flex layout in CSS

Flex layout is also called elastic layout. Any co...

CSS Sticky Footer Implementation Code

This article introduces the CSS Sticky Footer imp...

WeChat applet implements a simple dice game

This article shares the specific code of the WeCh...

Summary of 7 reasons why Docker is not suitable for deploying databases

Docker has been very popular in the past two year...

Detailed explanation of how to use eslint in vue

Table of contents 1. Description 2. Download rela...