无法将图像放在文本旁边(推入下一个div)

时间:2018-03-09 16:30:55

标签: html css image position

我想在div中的某些文本旁边放置一个图像,但是图像被推入下面的下一个div中,无论我增加多少边距或填充,都不会向上移动。我希望图像的中心位于图片中箭头尖端的位置:

Here's where the image is and where I want it to be

这是CSS和HTML:

.header {
  padding: 10px 16px;
  background: #1919ff;
  color: #f1f1f1;
}

#about {
  background-color: #ccccff;
  height: 400px;
  width: 67%;
  margin: auto;
}
   
.round-border{
    border-width: 0px;
    border-style: solid;
    border-radius: 50%;
  }
.portrait-image{
    width: 25%;    
    margin-bottom: 120%;
  }
h9 {
    font-size: 142%;
    margin: auto;
    padding-right: 30%;
    padding-top: 12%;
    display: inline-block;
  
}
.header-bar{
    height: 3px;
    width: 51%;
    background: #272C31;
    margin-right: 23%;
    margin-top: 3%;
}
h10 {
    font-size: 142%;
    margin: auto;
    padding-right: 24%;
    padding-top: 5%;
    display: inline-block;
}
#image position {
  position: relative;
  z-index: 1;
  margin-botton: 40%;
  padding-bottom: 20%;
}
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"/>
<style>
img {
    float: right;
}
.clearfix {
    overflow: auto;
}
</style>

<div class="header" id="myHeader">
  <h2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xxxxxxxxx</h2>
</div>

<body style="background-color: #5D6D7E;">
  <div id="about" align="center" position="relative">
    <h9><p align="right">xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx<br/>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx<br/>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
    </h9>
    <div class="header-bar"></div>
    <h10><p align="right">xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</p>
    </h10>
    <div id="image position"><img class="portrait-image round-border" align="right" src="http://abload.de/img/gpuxh.png" alt="portrait">
    </div>
  </div>
 </body>

非常感谢任何帮助,谢谢。

3 个答案:

答案 0 :(得分:1)

你可以使用CSS float。它适用于“浮动”到文本侧面的元素。

尝试设置:

#image-position {
  /* ... Your css here */
  float: right;
}

更多信息here

答案 1 :(得分:1)

你的代码有很多问题,我不知道从哪里开始。没有h9或h10标头标签。我建议使用有效的标头标签,并根据您的口味修改字体大小。此外,您不能将类/ ID名称用空格分隔。因此,“图像位置”将不起作用。以最好的方式修复它。

<script src="https://unpkg.com/vue@2.5.9/dist/vue.js"></script>


<div id="app">

  <pre>Selected Cat: {{selectedCategory}}</pre>

  <select name="" id="" v-model='selectedCategory'>
    <option :value="cat.name" v-for="cat in category"> {{ cat.name }}</option>
  </select>

  <select name="" id="">
    <option value="" v-for="cat in categoryPar" v-if="cat.name === selectedCategory"> {{ cat.name }}</option>
  </select>

</div>
.header {
  padding: 10px 16px;
  background: #1919ff;
  color: #f1f1f1;
}

#about {
  background-color: #ccccff;
  height: 400px;
  width: 67%;
  margin: auto;
  box-sizing: border-box;
}

.round-border {
  border-radius: 50%;
}

.portrait-image {
  width: 25%;
}

.header-bar {
  height: 3px;
  width: 51%;
  background: #272C31;
  margin-right: 23%;
  margin-top: 3%;
}

#image-position {
  float: right;
  margin: 15% 5% 0 0;
}

#text {
  float: left;
  width: 57%;
  word-break: break-all;
  margin: 5%;
}
.clearfix {
  /*clear the floats here*/
}

答案 2 :(得分:0)

使用bootstrap来实现此目的,请尝试以下代码段。

<div class="container">
  <div class="row">
        <div class="col-md-8">
            <p>
                Your text goes here... 
            </p>
        </div>
        <div class="col-md-4">
          <img src="">      
      </div>
  </div>
</div>

我希望这有帮助,