- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我试图制作一个包含 3 列的表格,其中第二列包含文本,并防止它对于屏幕来说太大,我定义它应该如下所示:
max-width: 90%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
它工作正常,直到我将屏幕宽度减小到一个值,在该值中表格试图跟上不应该的文本宽度。在浏览器中进行测试时,我注意到当我删除 white-space: nowrap;
时,它允许表格调整大小以适合屏幕,但它使文本没有 省略号
并全部出现在屏幕上。
以下是一些正在发生的事情的图片:
代码:
table.table {
width: 100%;
border-collapse: separate;
border-spacing: 0 10px;
}
table.table tr {
height: 7em;
}
table.table tr td {
background-color: #F7F7F7;
padding: 10px;
}
table.table td:first-child {
border-top-left-radius: 1.5rem;
border-bottom-left-radius: 1.5rem;
text-align: center;
width: 128px;
}
table.table td:last-child {
border-top-right-radius: 1.5em;
border-bottom-right-radius: 1.5em;
}
table.table td img {
max-width: 80px;
margin-top: 5px;
}
table.table td p {
margin: 0;
color: #636262;
}
table.table td p:first-child {
color: #1D1D25;
font-weight: 400;
margin-bottom: 5px;
}
table.table td p:last-child {
font-size: 14px;
}
table.table td p span {
color: #1D1D25;
}
table.table td:last-child a {
color: #636262;
display: inline-block;
margin: 0 10px;
text-decoration: none;
font-size: 1.3em;
cursor: pointer;
}
table.table td:last-child .col1 i,
table.table td:last-child .col1 span {
display: inline-block;
padding: 0 10px;
}
@media (max-width: 1040px) {
.center-mobile {
display: block;
text-align: center;
}
.center-mobile .flex-self-center {
padding-top: 7px;
}
.d-sm-none {
display: none;
}
table.table td:first-child {
width: 60px;
}
table.table td:last-child {
width: 110px;
}
table.table td:last-child a {
margin: 0 8px;
font-size: 0.9em;
}
.pageCount {
margin-top: 50px;
text-align: center;
}
.sign.desktop {
display: none !important;
}
.header .container-content .search-bar input {
padding-left: 0;
flex: 1;
}
.header .container-content .search-bar form {
display: flex;
}
table.table {
table-layout: fixed !important;
}
table.table td p:first-child {
max-width: 90%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.desk tr td:nth-child(2) {
max-width: 10px;
}
.mob {
display: none;
}
.mob td:nth-child(2) {
width: 100%;
}
.mob td:last-child div:first-child {
display: flex;
}
.mob td:last-child span {
padding-right: 0 !important;
}
.mob td:last-child .states {
right: 5px !important;
}
@media screen and (max-width: 1040px) {
.desk {
display: none;
}
.mob {
display: block;
}
}
table.table td:last-child .col1 i,
table.table td:last-child .col1 span {
display: inline-block;
padding: 0 10px;
}
table.table td:last-child .col1 i,
table.table td:last-child .col1 span {
font-size: 1.2em;
}
.table .actions {
text-align: right;
width: 100%;
position: relative;
bottom: -24px;
right: 4px;
}
.table .actions a {
font-size: 1.3em !important;
padding-top: 5px;
}
.table .col1 {
width: 100%;
text-align: right;
position: relative;
top: 12px;
padding-right: 10px;
}
.states {
position: relative;
right: 16px;
}
}
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<table class="table mob">
<tbody>
<tr>
<td>
<img :src="https://s4.thcdn.com/productimg/960/960/11534151-1964670429319264.jpg" alt="">
</td>
<td>
<p class="text-bold">Barra Proteica Light - 12 x 45g - Chocolate Branco e Framboesa</p>
<p>From the Store: <span>Fnac</span></p>
</td>
<td>
<div class="col1 d-inline-block">
<i v-if="x.price !== x.last_price" class="states fa fa-chevron-down text-success"></i>
<span>10EUR</span>
</div>
<div class="actions d-inline-block">
<a class="fas fa-sliders-h"></a>
<a target="_blank" rel="nofollow noopener nofollow" class="fa fa-link"></a>
<a class="fa fa-times"></a>
</div>
</td>
</tr>
</tbody>
</table>
最佳答案
在您的任务中,指定断点的确切宽度 (width: 50px
) 以及最小宽度 (min-width: 100%
) 非常重要> ) 用于在宽屏幕上显示全文。你的选择器应该是这样的:
table.table td p:first-child {
/*max-width: 90%;*/ /*delete this it*/
width: 50px; /*add this it*/
min-width: 100%; /*add this it*/
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
table.table {
width: 100%;
border-collapse: separate;
border-spacing: 0 10px;
}
table.table tr {
height: 7em;
}
table.table tr td {
background-color: #F7F7F7;
padding: 10px;
}
table.table td:first-child {
border-top-left-radius: 1.5rem;
border-bottom-left-radius: 1.5rem;
text-align: center;
width: 128px;
}
table.table td:last-child {
border-top-right-radius: 1.5em;
border-bottom-right-radius: 1.5em;
}
table.table td img {
max-width: 80px;
margin-top: 5px;
}
table.table td p {
margin: 0;
color: #636262;
}
table.table td p:first-child {
color: #1D1D25;
font-weight: 400;
margin-bottom: 5px;
}
table.table td p:last-child {
font-size: 14px;
}
table.table td p span {
color: #1D1D25;
}
table.table td:last-child a {
color: #636262;
display: inline-block;
margin: 0 10px;
text-decoration: none;
font-size: 1.3em;
cursor: pointer;
}
table.table td:last-child .col1 i,
table.table td:last-child .col1 span {
display: inline-block;
padding: 0 10px;
}
@media (max-width: 1040px) {
.center-mobile {
display: block;
text-align: center;
}
.center-mobile .flex-self-center {
padding-top: 7px;
}
.d-sm-none {
display: none;
}
table.table td:first-child {
width: 60px;
}
table.table td:last-child {
width: 110px;
}
table.table td:last-child a {
margin: 0 8px;
font-size: 0.9em;
}
.pageCount {
margin-top: 50px;
text-align: center;
}
.sign.desktop {
display: none !important;
}
.header .container-content .search-bar input {
padding-left: 0;
flex: 1;
}
.header .container-content .search-bar form {
display: flex;
}
table.table {
table-layout: fixed !important;
}
table.table td p:first-child {
/*max-width: 90%;*/
width: 50px;
min-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.desk tr td:nth-child(2) {
max-width: 10px;
}
.mob {
display: none;
}
.mob td:nth-child(2) {
width: 100%;
}
.mob td:last-child div:first-child {
display: flex;
}
.mob td:last-child span {
padding-right: 0 !important;
}
.mob td:last-child .states {
right: 5px !important;
}
@media screen and (max-width: 1040px) {
.desk {
display: none;
}
.mob {
display: block;
}
}
table.table td:last-child .col1 i,
table.table td:last-child .col1 span {
display: inline-block;
padding: 0 10px;
}
table.table td:last-child .col1 i,
table.table td:last-child .col1 span {
font-size: 1.2em;
}
.table .actions {
text-align: right;
width: 100%;
position: relative;
bottom: -24px;
right: 4px;
}
.table .actions a {
font-size: 1.3em !important;
padding-top: 5px;
}
.table .col1 {
width: 100%;
text-align: right;
position: relative;
top: 12px;
padding-right: 10px;
}
.states {
position: relative;
right: 16px;
}
}
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<table class="table mob">
<tbody>
<tr>
<td>
<img :src="https://s4.thcdn.com/productimg/960/960/11534151-1964670429319264.jpg" alt="">
</td>
<td>
<p class="text-bold">Barra Proteica Light - 12 x 45g - Chocolate Branco e Framboesa</p>
<p>From the Store: <span>Fnac</span></p>
</td>
<td>
<div class="col1 d-inline-block">
<i v-if="x.price !== x.last_price" class="states fa fa-chevron-down text-success"></i>
<span>10EUR</span>
</div>
<div class="actions d-inline-block">
<a class="fas fa-sliders-h"></a>
<a target="_blank" rel="nofollow noopener nofollow" class="fa fa-link"></a>
<a class="fa fa-times"></a>
</div>
</td>
</tr>
</tbody>
</table>
关于html - 空白 : nowrap; css style not allowing for table to be responsive,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64642505/
这个问题在这里已经有了答案: What is the best way to parse html in C#? [closed] (15 个答案) 关闭 3 年前。 string input =
为什么 wrapper #4 没有继承其父表容器的高度?表格嵌套在一个显示 block 包装器中,每个嵌套的div是显示表格,每个表格继承到最里面的一个。是什么原因造成的,我该如何解决? jsfidd
我正在使用带有 Bootstrap 的自定义 css 作为外边框。但顶部边框不可见,除非我将其大小设置为 2 px。 我该如何解决这个问题? HTML #name 1.one 2.two 3.thr
我正在逻辑层面上设计一个数据库,以便稍后将其传递给程序员来交付。我只是粗略地了解它们的工作原理,所以我很难简洁地表达我的问题。这是我的问题: 我有一个名为 MEANINGS 的表。 我有一个名为 WO
在 Laravel 上,我们可以使用 DB::table('table')->get(); 或使用 model::('table')->all() 进行访问;我的问题是它们之间有什么区别? 谢谢。 最
我试图从以下内容中抓取 URL从 WorldOMeter 获取 CoVid 数据,在此页面上存在一个表,id 为:main_table_countries_today其中包含我希望收集的 15x225
这是我的图表数据库:/image/CGAwh.png 我用 SEQUELIZE 制作了我的数据库模型: 型号:级别 module.exports = (sequelize, DataTypes) =>
我真的不明白为什么我的代码不能按预期工作。当我将鼠标悬停在表格的每一行上时,我想显示一个图像(来 self 之前加载的 JSON)。每个图像根据行的不同而不同,我想将它们显示在表格之外的另一个元素中。
假设我的数据库中有一张地铁 map ,其中每条线路的每个站点都是一行。如果我想知道我的线路在哪里互连: mysql> SELECT LineA.stop_id FROM LineA, LineB WH
我最近经常使用这些属性,尤其是 display: table-cell。它在现代浏览器中得到了很好的支持,并且它对某些网格有很多好处,并且可以非常轻松地对齐内容,而无需棘手的标记。但在过去的几天里,我
在 CSS 中,我可以这样做: http://s1.ipicture.ru/uploads/20120612/Uk1Z8iZ1.png http://s1.ipicture.ru/uploads/20
问题作为标题,我正在学习sparkSQL,但我无法很好地理解它们之间的区别。谢谢。 最佳答案 spark.table之间没有区别& spark.read.table功能。 内部 spark.read.
我正在尝试根据 this answer 删除表上的非空约束.但是,它似乎没有在 sqlite_sequence 中创建条目。这样做之后,即使我可以在使用测试表时让它正常工作。 有趣的是,如果我备份我的
var otable = new sap.m.Table();//here table is created //here multiple header I'm trying to create t
下面两种方法有什么区别: 内存 性能 答: select table.id from table B: select a.id from table a 谢谢(抱歉,如果我的问题重复)。 最佳答案 完
我尝试在表格后添加点,方法是使用 table::after 选择器创建一个点元素并使用 margin: 5px auto 5px auto; 将其居中。它有效,但似乎在第一个表格列之后添加了点,而不是
我正在设计一个可以标记任何内容的数据库,我可能希望能够选择带有特定标记的所有内容。 我正在为以下两个选项而苦苦挣扎,希望得到一些建议。如果有更好的方法请告诉我。 选项A 多个“多对多”连接表。 tag
"center" div 中的下表元素导致 "left" div 中的内容从顶部偏移几个像素(在我的浏览器中为 8 ).在表格之前添加一些文本可消除此偏移量。 为什么?如何在不要求在我的表格前添加“虚
我是一名优秀的程序员,十分优秀!