老师边框怎么加边框,怎么让文字漂浮在图片上

老师边框怎么加边框,怎么让文字漂浮在图片上

<!DOCTYPE>
<html>
<head>
  <title>Document</title>
  <link rel="stylesheet" type="text/css" href="commen.css">
</head>
<body>
<div class="header">
  <div class="img"><img src="../images/logo.png"></div>
  <div class="title">
     <ul>
        <li><a href="#">HOME</a></li>
         <li><a href="#">ABOUT</a></li>
           <li><a href="#">GALLERY</a></li>
           <li><a href="#">FACULTY</a></li>
           <li><a href="#">EVENTS</a></li>
           <li><a href="#">CONTACT</a></li>
     </ul>
  </div>
</div>
<div class="content">
<div class="img2">
  <img src="../images/banner3.jpg"  class="banner-img">
</div>
<div class="from">
  <form>
      <div class="from1">
       <tr>
        <td>
           <input type="text" name="" placeholder="your name " class="input1">
        </td>
     </tr>
      </div>
     <div class="from2">
     <tr>
        <td>
           <input type="text" name="" placeholder="your phone" class="input2">
        </td>
     </tr>
    </div>
    <div class="from3">
     <tr>
        <td>
           <input type="text" name="" placeholder="your email" class="input3">
        </td>
     </tr>
     </div>
     <div class="from4">
     <tr>
        <td>
              <textarea type="text" placeholder="write your commeten Here" class="input4"></textarea>
           </td>
     </tr>
   </div>
   <div class="from5">
     <tr>
        <td>
               <input type="submit" value="SEND MESSAGE" class="input5">  
           </td>
     </tr>
  </div>
  </form>
</div>
</div>
<!-- AUBOT区 -->
<div class="aubot">
  <!-- 上部分 -->
  <div class="top-content">
     <h3 class="aubot-h">AUBOT</h3>
     <p class="aubot-p">
        Lorem Ipsum is simply dummy text of the printing and<br> typesetting 
industry. Lorem Ipsum has been the indus<br>try's
        standard dummy
text ever since the 1500s.
     </p>
  </div>
  <!-- 中部分 -->
  <div class="content">
     <div class="content-h"><h3>A WORD
A BOUT US</h3></div>
     <div class="content-p">
        <p>Praesent dignissim viverr
 bibendum<br> ligula congue
et felis gravida commode
e<br> get ullamcorper ipsum.
diam amet.</p>
        <input type="submit" value="EXPLORE" class="subim">
     </div>
     <div class="content-img">
        <img src="../images/bb3.jpg">
     </div>
     <div class="num">
        <div class="num1">
           <div >70000</div>
           <p>Students</p>
        </div>
         <div class="num2">
          <div >600</div>
          <p> faculty</p>
       </div>
     </div>
  </div>
  <!--  下部分-->
  <div></div>
</div>
</body>
</html>


*{
  margin:0px;
  padding:0px;
}
.header{
  width:100%;
  height:80px;
  background-color:#07cbc9;
  }
.header .img{
 
  float:left;
  padding-top:25px;
  padding-left:150px;
}
.header .title{

  float:right;
   padding-top:9px;
   padding-right:150px;
}
.header .title ul li{
  float:right;
  list-style:none;
  margin-top:30px;
  margin-left:20px;
}
.header .title ul li a{
   text-decoration:none;
  color:white;
}
.content{
  width:100%;
  /*background-color: red;*/
}
.content .img2 .banner-img {

  width:100%;
  height:800px;
  /*background-color: red;*/
  background-color: transparent;
 
}
.content .from {
    z-index: 1;
    width: 300px;
   position: absolute;
   top: 350px;
   margin-top:-150px;
   right: 50%;
   margin-right: -200px;
   text-align: center;
   opacity: 0.5;
}
.content .from .input1{
  height: 40px;
  width: 300px;
}

.content .from .input2{
  height: 40px;
  width: 300px;
}

.content .from .input3{
  height: 40px;
  width: 300px;
}
.content .from .input4{
  height: 40px;
  width: 300px;
}
.content .from .input5{
  height: 40px;
  width: 100px;
}
.content .from .from1{
  height: 50px;
  width: -600px;
}
.content .from .from2{
  height: 50px;
}

.content .from .from3{
  height: 50px;
}

.content .from .from4{
  height: 50px;
}

.content .from .from5{
   z-index: 1;
    width: 300px;
   position: absolute;
   top: 350px;
   margin-top:-150px;
   right: 50%;
   margin-right: -150px;
   text-align: center;
 
}
.aubot{
  width: 100%;
  height: auto;
  /*background-color: red;*/
}
.aubot .top-content{
  position: relative;
  left: 800px;
  top: 50px;
}
.aubot .top-content .aubot-h{
  position: relative;
  left: 150px;
  font-family: 微软雅黑;
  font-size: 40px;
  text-decoration: underline;
}
.aubot .content .content-h{
  position: relative;
  left:550px ;
  top: 90px;

}
.aubot .content .content-p{
  position: relative;
  left:500px ;
  top: 100px;
  /*opacity: 0.4;*/
}
.aubot .content .content-p input{
  position: relative;
  left:100px ;
  top: 0px;
  /*opacity: 0.4;*/

}
.aubot .content .content-img{
  position: relative;
  left:700px ;
  margin-top: -10px;
}
.aubot .content .num .num1{
  position: relative;
  left: 1400px;
  top: -440px;
}
.aubot .content .num .num2{
  position: relative;
  left: 1400px;
  top: -300px;
}




正在回答 回答被采纳积分+1

登陆购买课程后可参与讨论,去登陆

1回答
好帮手慕小尤 2019-07-27 18:52:27

同学你好,使用border属性就可以设置边框了(border:1px solid #07cbc9;),使用 z-index就可以是文字覆盖到图片上(z-index 属性设置元素的堆叠顺序。拥有更高堆叠顺序的元素总是会处于堆叠顺序较低的元素的前面。)。祝学习愉快!

  • 提问者 慕容1027114 #1
    如果是相对定位也可以用z-index设置堆叠顺序吗
    2019-07-27 19:02:13
  • 好帮手慕小尤 回复 提问者 慕容1027114 #2
    同学你好,可以的。祝学习愉快!
    2019-07-27 19:06:33
问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
PHP小白零基础入门
  • 参与学习           人
  • 提交作业       626    份
  • 解答问题       4930    个

想要学好Web后端开发的中流砥柱语言,本阶段为你轻松铺就扎实的基础,从前端网页布局的搭建到后台PHP开发,助你从零基础到掌握主流开发语言。

了解课程
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师