"cards"
Bootstrap 3.0.0 Snippet by sandeepkumar3906

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<div class="row">
<div class="card" >
<div class="card-img-left">
<img src="https://d39tql9w7lbhv8.cloudfront.net/wp-content/uploads/2017/09/Black_Steam_Mirage_Logo.png
" alt="Card image cap">
34°C
<p> Cloudy</p>
</div>
<div class="card-body">
<h5 class="card-title">Card <span class="font-weight-bold">title</span></h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
</div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
.card-img-left {
float:left;
padding:10px;
}
.card-img-left img{
height: 59.44px; width: 101.11px;
display: block;
position:relative;
}
.card-body{
padding:10px;
}
.card-title{
height: 30px;
width: 334px;
color:#000;
font-family: Roboto;
font-size: 26px;
line-height: 34px;
}
.font-weight-bold{
font-weight: 500;
}
.card {
background-color: #FFFFFF;
box-shadow: -3px 2px 2px 0 rgba(119,151,178,0.16);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: