css网格_我如何记住CSS网格属性

css网格

The syntax for CSS Grid is foreign and hard to remember. But if you can’t remember CSS Grid’s syntax, you won’t be confident when you use CSS Grid.

CSS Grid的语法是外来的,很难记住。 但是,如果您不记得CSS Grid的语法,那么使用CSS Grid时就不会充满信心。

To wield CSS Grid effectively, you need to remember its properties and values.

为了有效地使用CSS Grid,您需要记住其属性和值。

I want to share how I remember the most common CSS Grid properties today. This will help you use CSS Grid without googling like a maniac.

我想分享我如何记住当今最常见CSS Grid属性。 这将帮助您使用CSS Grid,而不会像疯子一样进行谷歌搜索。

属性组 (Groups of properties)

I remember CSS Grid according to four groups of properties:

我记得CSS Grid根据四组属性:

  1. The explicit grid

    显式网格
  2. Gaps

    缝隙
  3. Aligning things

    对齐事物
  4. The implicit grid

    隐式网格

显式网格 (The explicit grid)

Let’s say you want to make a grid with 4 columns and 3 rows. You say this 4 columns and 3 rows out loud. It’s explicit.

假设您要制作一个4列3行的网格。 您说这4列和3行很大声。 很明显

If you declare the number of rows and columns in your grid, the grid is explicit.

如果声明网格中的行数和列数,则网格是显式的。

You can use two properties to make an explicit grid:

您可以使用两个属性来创建显式网格:

  1. grid-template-columns

    grid-template-columns

  2. grid-template-rows

    grid-template-rows

grid-template-columns lets you define the number of columns. grid-template-rows lets you define the number of rows.

grid-template-columns可让您定义列数。 grid-template-rows使您可以定义行数。

.grid {  display: grid;   grid-template-columns: 1fr 1fr 1fr 1fr;   grid-template-rows: 3em 3em 3em;}

This creates a grid with four columns and three rows.

这将创建一个具有四列三行的网格。

See the Pen XPyGZp by Zell Liew (@zellwk) on CodePen.

请参阅CodePen上的Zell Liew( @zellwk )的Pen XPyGZp 。

How do you know there are four columns and three rows?

您怎么知道有四列三行?

grid-template-columns create a new column for each length value you add to it. In the grid-template-columns declaration above, we have four 1fr values. This means four columns.

grid-template-columns为您添加到其中的每个长度值创建一个新列。 在上面的grid-template-columns声明中,我们有四个1fr值。 这意味着四列。

grid-template-rows work the same way. The grid above has three 3em values, which means it has 3 rows.

grid-template-rows以相同的方式工作。 上面的网格具有三个3em值,这意味着它具有3行。

grid-template-columns and grid-template-rows can also take in values like repeat, autofill, autofit, minmax. We won’t go into these values in this article.

grid-template-columnsgrid-template-rows也可以采用repeatautofillautofitminmax 。 在本文中,我们将不讨论这些值。

What you need to know now is you can create an explicit grid with two properties:

您现在需要知道的是可以创建具有两个属性的显式网格:

  1. grid-template-columns: creates columns

    grid-template-columns :创建列

  2. grid-template-rows: creates rows

    grid-template-rows :创建行

在网格中定位项目 (Positioning items in your grid)

You can control the position of items in a grid with two properties.

您可以使用两个属性控制项目在网格中的位置。

These two properties can only be used on a grid item.

这两个属性只能在网格项目上使用。

grid-column lets you choose which column(s) you want to place your grid item. It is a shorthand for grid-column-start and grid-column-end.

grid-column可让您选择要放置网格项的列。 它是grid-column-startgrid-column-end的简写。

It works this way: grid-column-start / grid-columns-end.

它是这样工作的: grid-column-start / grid-columns-end

/* Using the longhand */.grid-item {  grid-column-start: 1;   grid-column-end: 3;}
/* Using the shorthand */.grid-item {  grid-column: 1 / 3;}

Note: You can also use the span keyword to tell CSS Grid how many columns you want your item to take up.

注意:您也可以使用span关键字告诉CSS Grid您希望项目占用多少列。

/* Using the longhand */.grid-item {  grid-column-start: 1; /* Start at column one */  grid-column-end: span 2; /* Width is two columns */}

See the Pen Explicit Grid properties by Zell Liew (@zellwk) on CodePen.

见钢笔明确网格属性由泽尔与Liew( @zellwk )上CodePen 。

grid-row lets you choose which row(s) you want to place your grid item. It is a shorthand for grid-row-start and grid-row-end.

grid-row使您可以选择要放置网格项目的行。 它是grid-row-startgrid-row-end的简写。

It works this way: grid-row-start / grid-row-end.

它是这样工作的: grid-row-start / grid-row-end

/* Using the longhand */.grid-item {  grid-row-start: 1;   grid-row-end: span 2;}
/* Using the shorthand */.grid-item {  grid-row: 1 / span 2;}

See the Pen Positioning items (rows) by Zell Liew (@zellwk) on CodePen.

见笔定位件(行)由泽尔与Liew( @zellwk )上CodePen 。

在命名区域中定位项目 (Positioning items in named areas)

You can name parts of your grid if you don’t like counting rows and columns. These named parts are called grid areas. To create a grid area, you use grid-template-area on the grid.

如果您不喜欢计算行和列,则可以命名网格的各个部分。 这些命名的部分称为网格区域。 要创建网格区域,请在网格上使用grid-template-area

Some notes on creating grid areas:

有关创建网格区域的一些说明:

  1. You must name every grid area

    您必须命名每个网格区域
  2. If you don’t want to name an area, use .

    如果您不想命名区域,请使用.

  3. Each group separated by inverted commas ("row1" "row2") signifies a row

    每个组用逗号分隔( "row1" "row2" ),表示一行

  4. Each value within inverted commas ("area1 area2") signifies an area

    逗号内的每个值( "area1 area2" )表示一个区域

The example below has three grid areas:

下面的示例包含三个网格区域:

  1. header on the first two and takes up 4 columns

    前两个header ,占4列

  2. main on the second row and takes up the middle 2 columns

    main在第二行,占据中间的两列

  3. footer on the third row and takes up 4 columns

    第三行的footer ,占据4列

.grid {  grid-template-areas: "header header header header"                      ".      main   main   .     "                      "footer footer footer footer";}

To place items in a grid area, you use the grid-area property on the grid item.

要将项目放置在网格区域中,请在网格项目上使用grid-area属性。

To place items on a grid-area, you use grid-area.

要将项目放置在网格区域上,请使用grid-area

.grid {  display: grid;   /* ... */}
main {  grid-area: main}

See the Pen Grid-template-area by Zell Liew (@zellwk) on CodePen.

见笔网格模板面积由泽尔与Liew( @zellwk )上CodePen 。

如何记住这些属性 (How to remember these properties)

You learned 6 properties so far:

到目前为止,您已经了解了6个属性:

  1. grid-template-columns

    grid-template-columns

  2. grid-template-rows

    grid-template-rows

  3. grid-template-areas

    grid-template-areas

  4. grid-column

    grid-column

  5. grid-row

    grid-row

  6. grid-area

    grid-area

Some tips to remember these 6 properties:

记住这6个属性的一些技巧:

  1. The template keyword can only be used on the grid

    template关键字只能在网格上使用

    a) They’re used to declare grids and named areas

    a)它们用于声明网格和命名区域

    b) Properties with the

    b)具有的属性

    template keyword are plural

    template关键字为复数

  2. Properties for grid items do not have the template keyword

    网格项目的属性没有template关键字

    a) These properties are singular

    a)这些属性是单数

    b) These properties affect positioning

    b)这些属性影响定位

缝隙 (Gaps)

When you create a grid, you can create spaces between columns and rows. These spaces are called gaps.

创建网格时,可以在列和行之间创建空格。 这些空间称为间隙。

There are three properties to remember:

要记住三个属性:

  1. grid-column-gap

    grid-column-gap

  2. grid-row-gap

    grid-row-gap

  3. grid-gap

    grid-gap

grid-column-gap determines the space between columns.

grid-column-gap确定列之间的间隔。

grid-row-gap determines the space between rows.

grid-row-gap确定行之间的空间。

grid-gap is a shorthand for grid-column-gap and grid-row-gap.

grid-gapgrid-column-gapgrid-row-gap的简写。

For this shorthand:

对于此速记:

  1. the column value comes first: column-gap / row-gap

    column值排在第一位: column-gap / row-gap

  2. If you use a single number, both values will be that number.

    如果使用单个数字,则两个值都将是该数字。
/* Different values */.grid {  grid-column-gap: 1em;  grid-row-gap: 2em;}
.grid {  grid-gap: 1em / 2em; }/* Same values */.grid {  grid-column-gap: 1em;  grid-row-gap: 1em;}
.grid {  grid-gap: 1em;}

See the Pen Explicit Grid with gap by Zell Liew (@zellwk) on CodePen.

见笔与差距显式网格由泽尔与Liew( @zellwk )上CodePen 。

对齐事物 (Aligning things)

This is where many people get confused.

这是许多人感到困惑的地方。

There are six properties to align things:

有六个属性可以使事物对齐:

  1. justify-content

    justify-content

  2. align-content

    align-content

  3. justify-items

    justify-items

  4. align-items

    align-items

  5. justify-self

    justify-self

  6. align-self

    align-self

You can see two groups of patterns here:

您可以在此处看到两组模式:

  • The first group is justify vs align

    第一组是justifyalign

  • The second group is content, items, and self

    第二组是contentitemsself

These two groups of properties tell you what you’re dealing with. If you understand the property keyword, you’ll know how to use them.

这两组属性告诉您您要处理的内容。 如果您了解property关键字,就会知道如何使用它们。

对齐与对齐 (Justify vs align)

Each CSS Grid has two axes:

每个CSS网格都有两个轴:

  1. The main-axis

    主轴
  2. The cross-axis

    横轴

When you justify something, you’re changing the alignment according to the main-axis. When you align something, you’re changing the alignment according to the cross-axis.

当你justify什么,你根据主轴改变对齐。 align某物时,您正在根据横轴更改对齐方式。

Here’s an easy way to identify the main and cross axis:

这是识别主轴和交叉轴的简单方法:

  1. Identify the direction of the language

    确定语言的方向
  2. Main-axis is the way you read the language

    主轴是您阅读语言的方式
  3. Cross-axis is the way you read after you read the end of the first line.

    横轴是您阅读第一行结尾后的阅读方式。

Let’s take English as an example. How do you read English?

让我们以英语为例。 您如何阅读英语?

  1. Left to right

    左到右
  2. Top to bottom

    从上到下

So the main and cross axis is:

因此主轴和交叉轴为:

  1. Main: left to right

    主:从左到右
  2. Cross: top to bottom

    十字:从上到下

Note: the main and cross axes change if you change the language direction with writing-mode.

注意:如果您使用writing-mode更改语言方向,则主轴和十字轴也会改变。

内容,项目和自我 (Content, items, and self)

justify-content and align-content lets you align the grid itself to the available space outside of the grid. You will only need these properties if your grid is smaller than its defined area (which is rare).

justify-contentalign-content允许您将网格本身与网格外部的可用空间对齐。 仅当网格小于其定义的区域(很少见)时,才需要这些属性。

.grid {  justify-content: /* some value */;   align-content: /* some value */; }

You can pick from seven values:

您可以从七个值中进行选择:

  1. start: flush grid to the start of the axis

    start :将网格刷新到轴的起点

  2. end: flushed grid to the end of the axis

    end :冲洗网格到轴的末端

  3. center: align grid to the center of the axis

    center :将网格与轴中心对齐

  4. stretch: grid fills the axis (this is the default value)

    Stretch :网格填充轴(这是默认值)

  5. space-between: spreads whitespace between grid items. No whitespace at the ends

    space-between :在网格项目之间扩展空格。 末尾没有空格

  6. space-around: spreads whitespace around each grid item

    空格 :在每个网格项周围分布空白

  7. space-evenly: spreads whitespace evenly around all grid items including the ends

    均匀空间 :在所有网格项目(包括末端)周围均匀地分布空白

The pictures above are taken from CSS Tricks’s A complete Guide to Grid. It explains what each value does in detail. You can read it for more information.

上面的图片摘自CSS Tricks的《网格的完整指南》 。 它详细解释了每个值的作用。 您可以阅读以获取更多信息。

Our focus here is remembering the properties and how to use them. Let’s get back on track with the next set of properties.

我们在这里的重点是记住这些属性以及如何使用它们。 让我们回到下一组属性上。

justify-items and align-items lets you align grid-items to any available whitespace in their respective cells. Most of the time, when you’re trying to align things, you’re looking for either justify-items or align-items.

justify-itemsalign-items使您可以将网格项与它们各自单元格中的任何可用空格对齐。 在大多数情况下,当您尝试对齐内容时,您会寻找justify-itemsalign-items

.grid {  justify-items: /* some value */;   align-items: /* some value */; }

You can pick from the same four values:

您可以从相同的四个值中进行选择:

  1. start: flush item to the start of the axis

    start :将项目冲洗到轴的起点

  2. end: flush item to the end of the axis

    end :将项目冲洗到轴的末端

  3. center: align item to the center of the axis

    中心 :将项目与轴中心对齐

  4. stretch: fills the axis (this is the default value)

    Stretch :填充轴(这是默认值)

justify-self and align-self does the same thing as justify-items and align-items. The difference is it lets you change the alignment for only one grid-item.

justify-selfalign-selfjustify-itemsalign-items 。 不同之处在于,它仅允许您更改一个网格项目的对齐方式。

.grid-item {  justify-self: /* some value */;  align-self: /* some value */;}

隐式网格 (Implicit Grid)

Let’s say you created a CSS Grid, but you don’t have enough rows. In this example below, I only created an explicit grid for three items (3 columns, 1 row).

假设您创建了一个CSS网格,但是没有足够的行。 在下面的示例中,我仅为三个项目(3列1行)创建了一个显式网格。

.grid {  display: grid;   grid-template-columns: 1fr 1fr 1fr;  grid-template-row: 3em;}

But I have six items!

但是我有六个项目!

<!-- This is HTML -->
<div class="grid">  <div class="grid-item"></div>  <div class="grid-item"></div>  <div class="grid-item"></div>  <div class="grid-item"></div>  <div class="grid-item"></div>  <div class="grid-item"></div></div>

When you don’t have enough space in your explicit grid, CSS Grid will help you create additional grids automatically. By default, it’ll create more rows.

当您的显式网格中没有足够的空间时,CSS Grid将帮助您自动创建其他网格。 默认情况下,它将创建更多行。

If you want to switch the grid direction, you’ll set grid-auto-flow to row.

如果要切换网格方向,则将grid-auto-flowrow

This automatically created parts are called the implicit grid.

自动创建的零件称为隐式网格。

You can adjust the automatically created column(s) or row(s) with these two properties:

您可以使用以下两个属性来调整自动创建的列或行:

  1. grid-auto-columns

    grid-auto-columns

  2. grid-auto-rows

    grid-auto-rows

.grid {  display: grid;   grid-template-columns: 1fr 1fr 1fr;  grid-template-rows: 3em;   grid-auto-rows: 6em;}

See the Pen Implicit grid by Zell Liew (@zellwk) on CodePen.

见笔隐格由泽尔与Liew( @zellwk )上CodePen 。

如何记住隐式网格 (How to remember the implicit grid)

auto is the keyword you want to watch out for.

auto是您要注意的关键字。

  1. template creates the explicit grid

    template创建显式网格

  2. auto creates the implicit grid

    auto创建隐式网格

I use the implicit grid a lot. I’ll share how I use CSS Grid in another article.

我经常使用隐式网格。 在另一篇文章中,我将分享如何使用CSS Grid。

结语 (Wrapping up)

That’s almost every CSS Grid property you need to know for 80% of your grids! Here’s a summary of the properties you learned:

这几乎是您80%的网格都需要知道的每个CSS Grid属性! 这是您了解的属性的摘要:

  • Creating a grid

    创建网格

    a. Explicit:

    一个。 显式:

    1)

    1)

    grid-template-columns

    grid-template-columns

    2)

    2)

    grid-template-rows

    grid-template-rows

    3)

    3)

    grid-template-areas

    grid-template-areas

    b. Implicit:

    b。 隐式:

    1)

    1)

    grid-auto-columns

    grid-auto-columns

    2)

    2)

    grid-auto-rows

    grid-auto-rows

  • Gaps

    缝隙

    1)

    1)

    grid-column-gap

    grid-column-gap

    2)

    2)

    grid-row-gap

    grid-row-gap

    3)

    3)

    grid-gap

    grid-gap

  • Positioning items in a grid

    在网格中定位项目

    1)

    1)

    grid-column

    grid-column

    2)

    2)

    grid-row

    grid-row

  • Aligning things

    对齐事物

    1)

    1)

    justify-content

    justify-content

    2)

    2)

    align-content

    align-content

    3)

    3)

    justify-items

    justify-items

    4)

    4)

    align-items

    align-items

    5)

    5)

    justify-self

    justify-self

    6)

    6)

    align-self

    align-self

I hope this helps you remember CSS Grid! All the best!

希望这可以帮助您记住CSS Grid! 祝一切顺利!

Thanks for reading. Did this article help you in any way? If you did, I hope you consider sharing it. You might help someone out. Thank you!

谢谢阅读。 本文对您有任何帮助吗? 如果这样做, 希望您考虑共享它 。 您可能会帮助某人。 谢谢!

This article was originally posted at zellwk.com.Sign up for my newsletter if you want more articles to help you become a better frontend developer.

本文最初发布于zellwk.com 。 如果您想获得更多文章来帮助您成为更好的前端开发人员,请注册我的时事通讯 。

翻译自: https://www.freecodecamp.org/news/how-i-remember-css-grid-properties-3afee895763/

css网格

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/392864.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

2017年读书计划(一)

前言 这篇博文就暂时不记录技术了&#xff0c;记录下生活。对自己今年2017年做个读书计划安排。 最近在看一部网络剧 - 《花间提壶方大厨》&#xff0c;也许你们会感觉我很无聊&#xff0c;我也是被头条带坏了&#xff0c;每天上班一个小时的地下交通-地铁&#xff0c;就借助上…

.net10个必备工具

1.NUnit 编写单元测试的工具2.NDoc 自动生成代码文档的工具3.NAnt 编译解决方案的工具4.CodeSmith 自动生成代码的工具5.FxCop 检查你的代码是否按照规范编写的工具6.Snippet Compiler 编译少量代码的工具7.ASP.NET Version Switcher Visual Studio .NET Project Conve…

音标

音标 oror ds念子音&#xff0c;ts念s音

leetcode 530. 二叉搜索树的最小绝对差(中序遍历)

给你一棵所有节点为非负值的二叉搜索树&#xff0c;请你计算树中任意两节点的差的绝对值的最小值。示例&#xff1a;输入&#xff1a;1\3/2输出&#xff1a; 1解释&#xff1a; 最小绝对差为 1&#xff0c;其中 2 和 1 的差的绝对值为 1&#xff08;或者 2 和 3&#xff09;。代…

计算机排线知识,一种计算机排线梳理装置制造方法及图纸

【技术实现步骤摘要】一种计算机排线梳理装置本技术涉及计算机排线梳理&#xff0c;具体涉及一种计算机排线梳理装置。技术介绍计算机俗称电脑&#xff0c;是现代一种用于高速计算的电子计算机器&#xff0c;可以进行数值计算&#xff0c;又可以进行逻辑计算&#xff0c;还具有…

github和pypi_如何将GitHub用作PyPi服务器

github和pypiI was looking for a hosted private PyPi Python Package server, that used credentials that the team already has (such as GitHub).我正在寻找一个托管的私有PyPi Python Package服务器&#xff0c;该服务器使用了团队已经拥有的凭据(例如GitHub)。 I didn’…

数据结构与算法---查找算法(Search Algorithm)

查找算法介绍 在java中&#xff0c;我们常用的查找有四种: 顺序(线性)查找 二分查找/折半查找 插值查找斐波那契查找1)线性查找算法 示例&#xff1a; 有一个数列&#xff1a; {1,8, 10, 89, 1000, 1234} &#xff0c;判断数列中是否包含此名称【顺序查找】 要求: 如果找到了&a…

Exchange Server 2007邮箱存储服务器的集群和高可用性技术(上)

高可用性矩阵-->见下图:邮箱服务器高可用性目标: 数据可用性-->保护邮箱数据免于失败和损坏服务可用性-->提高群集实效转移操作 简化群集管理 支持地理分散的群集 支持低成本大邮箱(GB)使用户可以基于业务需要更好的选择容错方案提高解决方案的可用性使用解决方案可…

【C/C++开发】C++实现字符串替换的两种方法

替换字符串replace() erase()//C 第一种替换字符串的方法用replace()|C 第二种替换字符串的方法用erase()和insert()【 Cstring|C replace()|C erase()|C insert()|C自定义替换字符串函数】#include<string> #include<iostream> using namespace std;//第一种替换字…

html设置按钮样式变为椭圆,css border-radius圆形变为椭圆形,位置:绝对

我正在围绕字体真棒图标创建一个圆圈。我的问题是&#xff0c;当我添加position: absolute圆成为一个椭圆。css border-radius圆形变为椭圆形&#xff0c;位置&#xff1a;绝对同样的情况&#xff0c;如果我是设置display: block这里是什么&#xff0c;我想实现的图像 -CONRADU…

《火球——UML大战需求分析》(第1章 大话UML)——1.5 小结和练习

说明&#xff1a; 《火球——UML大战需求分析》是我撰写的一本关于需求分析及UML方面的书&#xff0c;我将会在CSDN上为大家分享前面几章的内容&#xff0c;总字数在几万以上&#xff0c;图片有数十张。欢迎你按文章的序号顺序阅读&#xff0c;谢谢&#xff01;本书已经在各大网…

金陵科技学院计算机开设课程,金陵科技学院各专业介绍

各专业介绍会计学专业(四年制本科) 金融学专业(四年制本科)财务管理专业(四年制本科) 国际经济与贸易专业(四年制本科)市场营销专业(四年制本科)国际商务专业(三年制专科)物流管理专业(三年制专科) 对外汉语专业(四年制本科)古典文献(古籍修复)专业(四年制本科)行政管理(高级秘…

【jQuery Demo】图片由下至上逐渐显示

无意中看到如何实现一张图片从下往上慢慢显现出来这个问题&#xff0c;弄了半天还是从上往下的效果&#xff0c;纠结了&#xff0c;最后还是提问人自己搞定了&#xff01;不过哈哈&#xff0c;又学到一点知识&#xff01; 1.下面是我自己做的效果(按钮可以点哦) 图片由下至上逐…

Morphia - mongodb之ORM框架

一、简介 二、注解 1、Entity 2、Id3、Indexed4、Embedded5、Transient和Property6、Reference 三、示例 四、参考资料 Morphia快速入门 Morphia 注解详解 使用Morphia框架操作mongodb 使用 Morphia 和 MongoDB 实现持久化 Spring中Mongodb的java实体类映射 ORM框架Morphia的学…

石头剪刀布游戏web_Web开发教程-剪刀石头布

石头剪刀布游戏webThis web development tutorial shows how to use JavaScript, HTML, and CSS to create a rock Paper Scissors Game in the browser.这份网络开发教程展示了如何使用JavaScript&#xff0c;HTML和CSS在浏览器中创建石头剪刀布游戏。 Tenzin explains every…

两个数之和等于第三个数

这是一个很好的算法题&#xff0c;解法类似于快速排序的整理方法。同时&#xff0c;更为值得注意的是这道题是 人人网2014校园招聘的笔试题&#xff0c;下面首先对题目进行描述&#xff1a; 给出一个有序数组&#xff0c;另外给出第三个数&#xff0c;问是否能在数组中找到两个…

html标题前色块,CSS轻松实现色块标题标识

不少网站开始采用韩式风格来建站&#xff0c;这种风格的特点是色彩变化丰富、应用Flash动画合理、结构新颖&#xff0c;最明显的特点就是表格或标题栏常会加上一条横或竖的色带&#xff0c;如图1中圈起来的地方就是这样。(图一)一般人都会想到用Photoshop等软件来完成这样的效果…

Git 基础 - 远程仓库的使用

远程仓库的使用 要参与任何一个 Git 项目的协作&#xff0c;必须要了解该如何管理远程仓库。远程仓库是指托管在网络上的项目仓库&#xff0c;可能会有好多个&#xff0c;其中有些你只能读&#xff0c;另外有些可以写。同他人协作开发某个项目时&#xff0c;需要管理这些远程仓…

山东理工大学第七届ACM校赛-G 飞花的传送门

G - 飞花的传送门飞花壕最近手头比较宽裕&#xff0c;所以想买两个传送门来代步&#xff08;夏天太热&#xff0c;实在是懒得走路&#xff09;。平面上有N个传送门&#xff0c;飞花壕想要挑两个距离最远的传送门带回家&#xff08;距离为欧几里得距离&#xff0c;即两点之间直线…

leetcode 1002. 查找常用字符

给定仅有小写字母组成的字符串数组 A&#xff0c;返回列表中的每个字符串中都显示的全部字符&#xff08;包括重复字符&#xff09;组成的列表。例如&#xff0c;如果一个字符在每个字符串中出现 3 次&#xff0c;但不是 4 次&#xff0c;则需要在最终答案中包含该字符 3 次。 …