React:使所有行高度相同

huangapple go评论60阅读模式
英文:

React: Make all rows the same height

问题

我已成功使一行中的所有列具有相同的高度,但是我不知道如何对行执行相同的操作(请参见下面的屏幕截图和代码)。我希望在移动视图中,当一行只有一个卡片时,所有行都具有相同的高度。

<div ref={ponudbaRef} className="trending-menu-section">
	<div className="container-fluid">
		<div className="row g-3 g-lg-4">
			<>
				{data?.map((item, i) => (
					<div className="col-sm-6 col-lg-3 d-flex" key={i}>
						<div className={`card-body offer-item text-center`}>
							<div className="text-center">
								<img src={item.slika} alt="" />
							</div>
							<h4 className="title">
								<Link to="/productDetails" state={{ime: item.ime}}>{item.ime}</Link>
							</h4>
						</div>
					</div>
				))}
			</>
		</div>
	</div>
</div>

这里所有的行都不同:

React:使所有行高度相同

这里同一行中的列具有相同的高度:
React:使所有行高度相同

英文:

I've managed to make all columns in a row the same height, however, I don't know how to do it for rows (see the screenshots and code below). I would like that in a mobile view, when there is only one card in a row, all rows have the same height.

<div ref={ponudbaRef} className="trending-menu-section">
	<div className="container-fluid">
		<div className="row g-3 g-lg-4">
			<>
				{data?.map((item, i) => (
					<div className="col-sm-6 col-lg-3 d-flex" key={i}>
						<div className={`card-body offer-item text-center`}>
							<div className="text-center">
								<img src={item.slika} alt="" />
							</div>
							<h4 className="title">
								<Link to="/productDetails" state={{ime: item.ime}}>{item.ime}</Link>
							</h4>
						</div>
					</div>
				))}
			</>
		</div>
	</div>
</div>

Here all the rows are different:

React:使所有行高度相同

Here columns in the same row have the same height:
React:使所有行高度相同

答案1

得分: 1

你可以将每一行(col-sm-6 col-lg-3 d-flex)设为一个弹性容器,然后应用 align-items: stretch,这是弹性容器的默认行为。这会使每个卡片(在这个上下文中是一个弹性项目)拉伸到该行中最高项的高度。因为卡片网格中的每一行都是一个新的弹性容器,这确保了每行中的所有卡片具有相同的高度。然而,它不会确保不同行中的卡片具有相同的高度。

<div ref={ponudbaRef} className="trending-menu-section">
    <div className="container-fluid">
        <div className="row g-3 g-lg-4">
            {data?.map((item, i) => (
                <div className="col-sm-6 col-lg-3 d-flex align-items-stretch" key={i}>
                    <div className={`card-body offer-item text-center d-flex flex-column`}>
                        <div className="text-center">
                            <img src={item.slika} alt="" />
                        </div>
                        <h4 className="title mt-auto">
                            <Link to="/productDetails" state={{ime: item.ime}}>{item.ime}</Link>
                        </h4>
                    </div>
                </div>
            ))}
        </div>
    </div>
</div>
英文:

You can make each row (col-sm-6 col-lg-3 d-flex) a flex container and then apply align-items: stretch, which is the default behavior of a flex container. This makes each card (a flex item in this context) stretch to the height of the tallest item in the row. Because each row in the grid of cards is a new flex container, this ensures that all cards in each row have the same height. However, it does not ensure that cards in different rows have the same height.

<div ref={ponudbaRef} className="trending-menu-section">
    <div className="container-fluid">
        <div className="row g-3 g-lg-4">
            {data?.map((item, i) => (
                <div className="col-sm-6 col-lg-3 d-flex align-items-stretch" key={i}>
                    <div className={`card-body offer-item text-center d-flex flex-column`}>
                        <div className="text-center">
                            <img src={item.slika} alt="" />
                        </div>
                        <h4 className="title mt-auto">
                            <Link to="/productDetails" state={{ime: item.ime}}>{item.ime}</Link>
                        </h4>
                    </div>
                </div>
            ))}
        </div>
    </div>
</div>

答案2

得分: 1

以下是您要翻译的CSS部分:

@media only screen and (max-width: 576px) { // CSS will apply to mobile only
  .card-body {
    height: 200px; // Make all cards the same height
  }

  img {
    width: 100%; // Make the image full window width
    max-height: 150px; // But not higher than 150px
    object-fit: contain; // Preserve image aspect ratio
  }
}

希望对您有所帮助。

英文:

Add the following CSS:

@media only screen and (max-width: 576px) { // CSS will apply to mobile only
  .card-body {
    height: 200px; // Make all cards the same height
  }

  img {
    width: 100%; // Make the image full window width
    max-height: 150px; // But not higher than 150px
    object-fit: contain; // Preserve image aspect ratio
  }
}

See the live demo.

App.js

import "./styles.css";
import img1 from "./salmon3.png";
import img2 from "./rib.png";

export default function App() {
  return (
    <div className="pb-120 desert-menu-section">
      <div className="container-fluid">
        <div className="row g-3 g-lg-4">
          {data?.map((item, i) => (
            <div
              className="col-sm-6 col-lg-3 d-flex align-items-stretch"
              key={i}
            >
              <div className="card-body offer-item text-center">
                <div className="text-center">
                  <img src={item.img} alt="" />
                </div>
                <h4 className="title">
                  <p to="/productDetails" state={{ ime: item.title }}>
                    {item.title}
                  </p>
                </h4>
              </div>
            </div>
          ))}
        </div>
      </div>
    </div>
  );
}

const data = [
  {
    img: img1,
    title: "Juicy Beef Burger Meal"
  },
  {
    img: img2,
    title: "Choko Milkshake From Heaven"
  }
];

styles.css

.App {
  font-family: sans-serif;
  text-align: center;
}

.container {
  position: relative;
  z-index: 1;
}

@include breakpoint(xl) {
  .container {
    max-width: 1260px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@include breakpoint(max-lg) {
  .container,
  .container-fluid {
    padding-inline: 30px;
  }
}

.pb-120 {
  padding-bottom: 120px;
  @include breakpoint(max-lg) {
    padding-bottom: 90px;
  }
}

@include breakpoint(max-md) {
  .desert-menu-section {
    padding-top: 40px;
  }

  .trending-menu-section {
    padding-top: 140px;
  }

  .layer-section {
    padding: 140px 0 130px;
    .btn-base {
      font-size: 18px;
      padding: 10px 45px;
    }
  }
}

/* Added */
@media only screen and (max-width: 576px) {
  .card-body {
    border: 1px solid red;
    height: 200px;
  }

  img {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
  }
}

huangapple
  • 本文由 发表于 2023年5月26日 13:56:48
  • 转载请务必保留本文链接:https://go.coder-hub.com/76338001.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定