gpt4 book ai didi

html - 如何制作 CSS 行框?

转载 作者:太空宇宙 更新时间:2023-11-03 19:42:47 25 4
gpt4 key购买 nike

我正在尝试像在表格中一样制作几行,但使用 div。

每个人的左边都有一张图片、一段文字和“阅读更多”。 For example, the squiggly line represents "read more"

我试过使用 display:table,但它似乎不起作用。文本和图像未正确对齐。

http://jsfiddle.net/76a4j/1/

.entry{
width=100%;
display:table;
}

entry-row {
border: 2px #000000 solid;
margin-top:5px;
margin-bottom:5px;
display: table-row;
}

.imgrL {
border: 1px solid #c7c5c8;
padding: 5px;
float:left;
clear:left;
}

谢谢大家的回答,我知道我哪里做错了,现在已经改正了:)

最佳答案

你有两个问题:

  1. CSS不使用=改变

    width=100%;

    width: 100%;
  2. 您需要在所有类选择器上使用.更改

    entry-row {

    .entry-row {

通过这些更改,it looks more like your image .

关于html - 如何制作 CSS 行框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23799200/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com