- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在开发一个响应式网站,该网站包含带有标题和描述的图 block 。我遇到的问题是当屏幕尺寸变小时,图 block 变小,标题空间变小。当达到图 block 的大小时,文本应该被隐藏并在末尾显示一个省略号……。取而代之的是文本增加了整个图 block 的大小,但图 block 越来越高,超出了它应该能够达到的高度。关于如何使标题不换行并在不增加图 block 大小的情况下添加椭圆的任何建议?
我在我注意到问题的磁贴上添加了一张图片,然后为该页面添加了我的 CSS 和 HTML。
/* Float four columns side by side (desktop view)*/
.column {
position: relative;
/* display: flex; */
padding: 10px 10px 20px 10px
}
@media (min-width: 668px) {
.column {
display: inline-flex;
}
.tile-card {
width: 100%;
min-width: 175px;
}
}
@media (min-width: 1025px) {
.tile-card {
width: 100%;
max-width: 425px;
min-width: 175px;
}
}
@media (max-width: 667px) {
.column {
display: block;
}
}
.tile-card {
background-color: #FFF;
width: 100%;
height: 230px;
color: #fff;
border-style: solid;
border-color: #0006;
border-width: 1px;
border-radius: 5px;
}
.dash-title {
background-color: #00A0D3;
width: 100%;
height: 14%;
margin-bottom: 0px;
text-align: left;
border-style: solid;
border-color: #00A0D3;
border-width: 1px;
border-radius: 5px 5px 0px 0px;
padding-left: 20px;
padding-right: 20px;
padding-top: 8px;
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
/*
.dash-title {
background-color: #00A0D3;
width: 100%;
height: 25%;
margin-bottom: 0px;
text-align: left;
border-style: solid;
border-color: #00A0D3;
border-width: 1px;
border-radius: 5px 5px 0px 0px;
padding-left: 20px;
padding-top: 10px;
font-weight: bold;
} */
.dash-description {
width: 70%;
height: 65%;
text-align: center;
display: inline-block;
float: left;
color: #00384f;
/* padding-top: 11px; */
}
.tile-icon {
display: inline-block;
margin-left: auto;
margin-right: auto;
height: 65%;
/* padding-top: 15px; */
float: left;
flex-shrink: 0;
flex-grow: 0;
flex-basis: 100px;
padding-left: 8px;
}
.flexContainer {
display: flex;
height: 75%;
position: relative;
}
.report-type {
/* display: none; */
display: inline-block;
margin-right: 10px;
width: 15px;
height: 15px;
float: right;
margin-top: 150px;
}
.foot {
background: #fff;
border-top: 1px solid rgba(0, 0, 0, 0.1);
color: #4d4d4d;
padding-top: 40px;
padding-bottom: 40px;
text-align: center;
width: 100%;
float: left;
/* position: relative;
bottom: 0px; */
position: absolute;
right: 0;
bottom: 0;
left: 0;
}
ul.linkTrail {
padding: 10px 16px;
list-style: none;
background-color: #fff;
}
ul.linkTrail li {
display: inline;
font-size: 14px;
}
ul.linkTrail li+li:before {
padding: 8px;
color: black;
content: "/\00a0";
}
ul.linkTrail li a {
color: #0275d8;
text-decoration: none;
padding-right: 8px;
}
ul.linkTrail li a:hover {
color: #01447e;
text-decoration: underline;
}
* {
box-sizing: border-box;
margin: auto;
font-family: "tahoma", Times, Serif;
}
/* Extra Large devices - 1025px and up will have 4 columns */
@media (min-width: 1025px) {
.col-extraLarge-3 {
float: left;
width: 25%;
}
}
/* Large devices - 992px to 1024px will have 3 columns */
@media (min-width: 992px) and (max-width: 1024px) {
.col-large-4 {
float: left;
width: 33.33%;
}
}
/* Medium devices - 668px to 991px will have 2 columns */
@media (min-width: 668px) and (max-width: 991px) {
.col-medium-6 {
float: left;
width: 50%;
}
}
/* Small devices - 667px and below will have 1 column */
@media (max-width: 667px) {
.col-small-12 {
float: left;
width: 100%;
}
div.article,
div.welcome {
padding: 0px 0px 10px 0px;
margin-top: -10px;
}
}
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="TileTemplate.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
</head>
<body>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Bookings Trend</div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">Interactive dashboard that displays trends for software & product bookings, deal counts, average selling prices and discounts over time.</div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Detailed KPIs</div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">High level views of the business and where we stand against weekly target for major indicators such as bookings, funnel, inflow and closed/lost.<br/> </div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Executive KPI Summary</div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">Companywide information and statistics dashboard with views of where we stand against weekly</div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Funnel Inflow Trends</div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">Interactive dashboard that shows trends in funnel inflow over time.</div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Funnel Trends</div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">Interactive dashboard that displays historical views of the funnel.<br/></div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Route To Market Bookings Trends<br/></div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">Interactive dashboard that displays trends from a Route to Market perspective for software & product bookings, deal counts, average selling prices and discounts over time. This view includes both a hierarchical view (single-crediting) and
overlay view (multi-crediting).</div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Route To Market Funnel Trends</div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">Interactive dashboard that displays historical views from a Route to Market perspective of the funnel. Including opportunity count and average selling price. This view includes both a hierarchical view (single-crediting) and overlay view (multi-crediting).</div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Weekly Forecast Call</div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">Detailed view of current quarter and next quarter deal rollup by region with field calls.<br/></div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
</div><br/>
</body>
</html>
最佳答案
这是一个使用 jQuery each
方法的答案。您可以将 70
切换为您想要的任何值。
如果你想让它响应更快,你可以将它包装在 $(window).resize()
函数中并检查浏览器窗口的宽度然后甚至不运行如果它在手机或平板电脑中,则为此。
// For each element with this class.
$('.dash-description').each(function() {
// Set a variable equal to the text of the element.
var inner_text = $(this).text();
// Checks to see how long the original length is. If the text is shorter than the value of 70, then don't run this next part.
if (inner_text.length > 70) {
// Trims the lines from the text and then pulls the first 70 characters
var new_text = $.trim(inner_text).substring(0, 70);
// Swaps the original text with the new truncated text and adds the ellipses
$(this).text(new_text + '...');
}
});
/* Float four columns side by side (desktop view)*/
.column {
position: relative;
/* display: flex; */
padding: 10px 10px 20px 10px
}
@media (min-width: 668px) {
.column {
display: inline-flex;
}
.tile-card {
width: 100%;
min-width: 175px;
}
}
@media (min-width: 1025px) {
.tile-card {
width: 100%;
max-width: 425px;
min-width: 175px;
}
}
@media (max-width: 667px) {
.column {
display: block;
}
}
.tile-card {
background-color: #FFF;
width: 100%;
height: 230px;
color: #fff;
border-style: solid;
border-color: #0006;
border-width: 1px;
border-radius: 5px;
}
.dash-title {
background-color: #00A0D3;
width: 100%;
height: 14%;
margin-bottom: 0px;
text-align: left;
border-style: solid;
border-color: #00A0D3;
border-width: 1px;
border-radius: 5px 5px 0px 0px;
padding-left: 20px;
padding-right: 20px;
padding-top: 8px;
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
/*
.dash-title {
background-color: #00A0D3;
width: 100%;
height: 25%;
margin-bottom: 0px;
text-align: left;
border-style: solid;
border-color: #00A0D3;
border-width: 1px;
border-radius: 5px 5px 0px 0px;
padding-left: 20px;
padding-top: 10px;
font-weight: bold;
} */
.dash-description {
width: 70%;
height: 65%;
text-align: center;
display: inline-block;
float: left;
color: #00384f;
/* padding-top: 11px; */
}
.tile-icon {
display: inline-block;
margin-left: auto;
margin-right: auto;
height: 65%;
/* padding-top: 15px; */
float: left;
flex-shrink: 0;
flex-grow: 0;
flex-basis: 100px;
padding-left: 8px;
}
.flexContainer {
display: flex;
height: 75%;
position: relative;
}
.report-type {
/* display: none; */
display: inline-block;
margin-right: 10px;
width: 15px;
height: 15px;
float: right;
margin-top: 150px;
}
.foot {
background: #fff;
border-top: 1px solid rgba(0, 0, 0, 0.1);
color: #4d4d4d;
padding-top: 40px;
padding-bottom: 40px;
text-align: center;
width: 100%;
float: left;
/* position: relative;
bottom: 0px; */
position: absolute;
right: 0;
bottom: 0;
left: 0;
}
ul.linkTrail {
padding: 10px 16px;
list-style: none;
background-color: #fff;
}
ul.linkTrail li {
display: inline;
font-size: 14px;
}
ul.linkTrail li+li:before {
padding: 8px;
color: black;
content: "/\00a0";
}
ul.linkTrail li a {
color: #0275d8;
text-decoration: none;
padding-right: 8px;
}
ul.linkTrail li a:hover {
color: #01447e;
text-decoration: underline;
}
* {
box-sizing: border-box;
margin: auto;
font-family: "tahoma", Times, Serif;
}
/* Extra Large devices - 1025px and up will have 4 columns */
@media (min-width: 1025px) {
.col-extraLarge-3 {
float: left;
width: 25%;
}
}
/* Large devices - 992px to 1024px will have 3 columns */
@media (min-width: 992px) and (max-width: 1024px) {
.col-large-4 {
float: left;
width: 33.33%;
}
}
/* Medium devices - 668px to 991px will have 2 columns */
@media (min-width: 668px) and (max-width: 991px) {
.col-medium-6 {
float: left;
width: 50%;
}
}
/* Small devices - 667px and below will have 1 column */
@media (max-width: 667px) {
.col-small-12 {
float: left;
width: 100%;
}
div.article,
div.welcome {
padding: 0px 0px 10px 0px;
margin-top: -10px;
}
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Bookings Trend</div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">Interactive dashboard that displays trends for software & product bookings, deal counts, average selling prices and discounts over time.</div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Detailed KPIs</div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">High level views of the business and where we stand against weekly target for major indicators such as bookings, funnel, inflow and closed/lost.</div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Executive KPI Summary</div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">Companywide information and statistics dashboard with views of where we stand against weekly</div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Funnel Inflow Trends</div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">Interactive dashboard that shows trends in funnel inflow over time.</div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Funnel Trends</div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">Interactive dashboard that displays historical views of the funnel.</div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Route To Market Bookings Trends<br/></div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">Interactive dashboard that displays trends from a Route to Market perspective for software & product bookings, deal counts, average selling prices and discounts over time. This view includes both a hierarchical view (single-crediting) and
overlay view (multi-crediting).</div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Route To Market Funnel Trends</div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">Interactive dashboard that displays historical views from a Route to Market perspective of the funnel. Including opportunity count and average selling price. This view includes both a hierarchical view (single-crediting) and overlay view (multi-crediting).</div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Weekly Forecast Call</div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">Detailed view of current quarter and next quarter deal rollup by region with field calls.<br/></div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
这是包含调整大小事件的版本:
// New function. Arguments are the element and the window width.
function wpso_08012019_truncate_text(element, window_width) {
// Loop through the passed elements.
element.each(function() {
// Set a var for the element's text.
var inner_text = $(this).text();
// Set a data attribute on the element with the original text. We'll need this later.
$(this).attr('data-original', inner_text);
// If the character count of the text is longer than this value (70), then do this next stuff.
if (inner_text.length > 70) {
// Set a new var with the text truncated to a set character count (70).
var new_text = $.trim(inner_text).substring(0, 70);
// Set the text of the element to the truncated text plus the ellipses
$(this).text(new_text + '...');
}
// If the window width is less than this, run this.
if (window_width < 768) {
// Set the text of the element to it's original text from the data-attribute we added earlier. Smart.
$(this).text($(this).data('original'));
}
});
}
$(window).resize(function() {
// On resize set the var for the window width
var window_width = $(window).width();
// Run the function on resize passing in the element and the window width.
wpso_08012019_truncate_text($('.dash-description'), window_width)
});
$(document).ready(function() {
// Trigger the window resize event on document ready.
$(window).trigger('resize');
});
/* Float four columns side by side (desktop view)*/
.column {
position: relative;
/* display: flex; */
padding: 10px 10px 20px 10px
}
@media (min-width: 668px) {
.column {
display: inline-flex;
}
.tile-card {
width: 100%;
min-width: 175px;
}
}
@media (min-width: 1025px) {
.tile-card {
width: 100%;
max-width: 425px;
min-width: 175px;
}
}
@media (max-width: 667px) {
.column {
display: block;
}
}
.tile-card {
background-color: #FFF;
width: 100%;
height: 230px;
color: #fff;
border-style: solid;
border-color: #0006;
border-width: 1px;
border-radius: 5px;
}
.dash-title {
background-color: #00A0D3;
width: 100%;
height: 14%;
margin-bottom: 0px;
text-align: left;
border-style: solid;
border-color: #00A0D3;
border-width: 1px;
border-radius: 5px 5px 0px 0px;
padding-left: 20px;
padding-right: 20px;
padding-top: 8px;
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
/*
.dash-title {
background-color: #00A0D3;
width: 100%;
height: 25%;
margin-bottom: 0px;
text-align: left;
border-style: solid;
border-color: #00A0D3;
border-width: 1px;
border-radius: 5px 5px 0px 0px;
padding-left: 20px;
padding-top: 10px;
font-weight: bold;
} */
.dash-description {
width: 70%;
height: 65%;
text-align: center;
display: inline-block;
float: left;
color: #00384f;
/* padding-top: 11px; */
}
.tile-icon {
display: inline-block;
margin-left: auto;
margin-right: auto;
height: 65%;
/* padding-top: 15px; */
float: left;
flex-shrink: 0;
flex-grow: 0;
flex-basis: 100px;
padding-left: 8px;
}
.flexContainer {
display: flex;
height: 75%;
position: relative;
}
.report-type {
/* display: none; */
display: inline-block;
margin-right: 10px;
width: 15px;
height: 15px;
float: right;
margin-top: 150px;
}
.foot {
background: #fff;
border-top: 1px solid rgba(0, 0, 0, 0.1);
color: #4d4d4d;
padding-top: 40px;
padding-bottom: 40px;
text-align: center;
width: 100%;
float: left;
/* position: relative;
bottom: 0px; */
position: absolute;
right: 0;
bottom: 0;
left: 0;
}
ul.linkTrail {
padding: 10px 16px;
list-style: none;
background-color: #fff;
}
ul.linkTrail li {
display: inline;
font-size: 14px;
}
ul.linkTrail li+li:before {
padding: 8px;
color: black;
content: "/\00a0";
}
ul.linkTrail li a {
color: #0275d8;
text-decoration: none;
padding-right: 8px;
}
ul.linkTrail li a:hover {
color: #01447e;
text-decoration: underline;
}
* {
box-sizing: border-box;
margin: auto;
font-family: "tahoma", Times, Serif;
}
/* Extra Large devices - 1025px and up will have 4 columns */
@media (min-width: 1025px) {
.col-extraLarge-3 {
float: left;
width: 25%;
}
}
/* Large devices - 992px to 1024px will have 3 columns */
@media (min-width: 992px) and (max-width: 1024px) {
.col-large-4 {
float: left;
width: 33.33%;
}
}
/* Medium devices - 668px to 991px will have 2 columns */
@media (min-width: 668px) and (max-width: 991px) {
.col-medium-6 {
float: left;
width: 50%;
}
}
/* Small devices - 667px and below will have 1 column */
@media (max-width: 667px) {
.col-small-12 {
float: left;
width: 100%;
}
div.article,
div.welcome {
padding: 0px 0px 10px 0px;
margin-top: -10px;
}
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Bookings Trend</div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">Interactive dashboard that displays trends for software & product bookings, deal counts, average selling prices and discounts over time.</div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Detailed KPIs</div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">High level views of the business and where we stand against weekly target for major indicators such as bookings, funnel, inflow and closed/lost.<br /></div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Executive KPI Summary</div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">Companywide information and statistics dashboard with views of where we stand against weekly</div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Funnel Inflow Trends</div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">Interactive dashboard that shows trends in funnel inflow over time.</div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Funnel Trends</div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">Interactive dashboard that displays historical views of the funnel.<br /></div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Route To Market Bookings Trends<br /></div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">Interactive dashboard that displays trends from a Route to Market perspective for software & product bookings, deal counts, average selling prices and discounts over time. This view includes both a hierarchical view (single-crediting) and
overlay view (multi-crediting).</div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Route To Market Funnel Trends</div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">Interactive dashboard that displays historical views from a Route to Market perspective of the funnel. Including opportunity count and average selling price. This view includes both a hierarchical view (single-crediting) and overlay view (multi-crediting).</div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
<div class="column col-extraLarge-3 col-large-4 col-medium-6 col-small-12">
<a href="#" target="_blank">
<div class="tile-card">
<div class="dash-title">Weekly Forecast Call</div>
<div class="flexContainer">
<img class="tile-icon" src="/sites/bic/PublishingImages/Legal.png" alt="" />
<div class="dash-description">Detailed view of current quarter and next quarter deal rollup by region with field calls.<br /></div>
<img class="report-type" src="/sites/bic/PublishingImages/power-bi.png" alt="" />
</div>
</div>
</a>
</div>
这是调整大小版本的 fiddle :
关于html - 如何在不扩大图 block 大小的情况下让我的标题断开并显示省略号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57313563/
我的Angular-Component位于一个flexbox(id =“log”)中。可以显示或隐藏flexbox。 我的组件内部有一个可滚动区域,用于显示日志消息。 (id =“message-li
我真的很困惑 有一个 phpinfo() 输出: MySQL 支持 启用 客户端 API 版本 5.5.40 MYSQL_MODULE_TYPE 外部 phpMyAdmin 显示: 服务器类型:Mar
我正在研究这个 fiddle : http://jsfiddle.net/cED6c/7/我想让按钮文本在单击时发生变化,我尝试使用以下代码: 但是,它不起作用。我应该如何实现这个?任何帮助都会很棒
我应该在“dogs_cats”中保存表“dogs”和“cats”各自的ID,当看到数据时显示狗和猫的名字。 我有这三个表: CREATE TABLE IF NOT EXISTS cats ( id
我有一个字符串返回到我的 View 之一,如下所示: $text = 'Lorem ipsum dolor ' 我正在尝试用 Blade 显示它: {{$text}} 但是,输出是原始字符串而不是渲染
我无法让我的链接(由图像表示,位于页面左侧)真正有效地显示一个 div(包含一个句子,位于中间)/单击链接时隐藏。 这是我的代码: Practice
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 4 年前。 Improve this ques
最初我使用 Listview 来显示 oracle 结果,但是最近我不得不切换到 datagridview 来处理比 Listview 允许的更多的结果。然而,自从切换到数据网格后,我得到的结果越来越
我一直在尝试插入一个 Unicode 字符 ∇ 或 ▽,所以它显示在 Apache FOP 生成的 PDF 中。 这是我到目前为止所做的: 根据这个基本帮助 Apache XSL-FO Input,您
我正在使用 node v0.12.7 编写一个 nodeJS 应用程序。 我正在使用 pm2 v0.14.7 运行我的 nodejs 应用程序。 我的应用程序似乎有内存泄漏,因为它从我启动时的大约 1
好的,所以我有一些 jQuery 代码,如果从下拉菜单中选择了带有前缀 Blue 的项目,它会显示一个输入框。 代码: $(function() { $('#text1').hide();
当我试图检查 Chrome 中的 html 元素时,它显示的是 LESS 文件,而 Firefox 显示的是 CSS 文件。 (我正在使用 Bootstrap 框架) 如何在 Chrome 中查看 c
我是 Microsoft Bot Framework 的新手,我正在通过 youtube 视频 https://youtu.be/ynG6Muox81o 学习它并在 Ubuntu 上使用 python
我正在尝试转换从 mssql 生成的文件到 utf-8。当我打开他的输出 mssql在 Windows Server 2003 中使用 notepad++ 将文件识别为 UCS-2LE我使用 file
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我正在尝试执行单击以打开/关闭一个 div 的功能。 这是基本的,但是,点击只显示 div,当我点击“关闭”时,没有任何反应。 $(".inscricao-email").click(function
假设我有 2 张卡片,屏幕上一次显示一张。我有一个按钮可以用其他卡片替换当前卡片。现在假设卡 1 上有一些数据,卡 2 上有一些数据,我不想破坏它们每个上的数据,或者我不想再次重建它们中的任何一个。
我正在使用 Eloquent Javascript 学习 Javascript。 我在 Firefox 控制台上编写了以下代码,但它返回:“ReferenceError:show() 未定义”为什么?
我正在使用 Symfony2 开发一个 web 项目,我使用 Sonata Admin 作为管理面板,一切正常,但我想要做的是,在 Sonata Admin 的仪表板菜单上,我需要显示隐藏一些菜单取决
我试图显示一个div,具体取决于从下拉列表中选择的内容。例如,如果用户从列表中选择“现金”显示现金div或用户从列表中选择“检查”显示现金div 我整理了样本,但样本不完整,需要接线 http://j
我是一名优秀的程序员,十分优秀!