自举图像在巨无霸中的位置

时间:2019-06-21 03:48:56

标签: css image position

好像我无法使该图像与文本对齐。
我正在尝试使徽标与那两个句子保持一致。

此外,没有样式设置。只是默认的Bootstrap.css文件。

<div class="box-padding-md grey-bg">
  <div class="jumbotron jumbotron-fluid">
    <div class="container">
      <img src="../img/bg.png" style="float:left;width:150px;height:150px;margin-left:20px;margin-right:20px;margin-bottom:20px;">
      <h3 class="display-5">"Espher Information Assocation"</h3>
      <p class="lead">제16세대 프로젝트</p>
    </div>
  </div>
</div>

Photo of the result

3 个答案:

答案 0 :(得分:0)

您可以使用类似

<style>
.align{
   width:150px;
   height:150px;
   margin-left:20px;
   margin-right:20px;
   margin-bottom:20px;
}
<style>

In HTML use this

<a class="align"><img src="../img/bg.png" alt=""></a>

答案 1 :(得分:0)

使用网格系统:https://jsfiddle.net/wwWaldi/3xy4woq7/13/

<div class="box-padding-md grey-bg">
  <div class="jumbotron jumbotron-fluid">
      <div class="row">
        <div class="col-1"></div>
        <div class="col-4 text-right">
           <img src="../img/bg.png" id="myImg" >
        </div>
        <div class="col-6">
          <h3 class="display-5">"Espher Information Assocation"</h3>
          <p class="lead">제16세대 프로젝트</p>    
        </div> 
        <div class="col-1"></div>
    </div>
  </div>
</div>

答案 2 :(得分:0)

您可以使用bootstrap媒体对象来执行此操作,而无需使用任何CSS。 检查链接,您可以有更好的主意 https://getbootstrap.com/docs/4.0/layout/media-object/

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>Bootstrap Media</title>
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
  <div class="box-padding-md grey-bg">
    <div class="jumbotron jumbotron-fluid">
      <div class="container">  
        <div class="media p-3">
          <img src="https://i.imgur.com/v9f1nS2.jpg" alt="John Doe" class="mr-3 mt-3 rounded-circle" style="width:60px;">
           <div class="media-body">
            <h3 class="display-5">"Espher Information Assocation"</h3>
            <p class="lead">제16세대 프로젝트</p>
          </div>
        </div>
      </div>
    </div>
  </div>
</body>
</html>