团队作业(3)

<template>
  <header class="header">
    <!-- 头部的第一行 -->
    <div class="top">
      <div class="container">
        <div class="loginList">
          <p>欢迎使用!</p>
        </div>
        <div class="typeList">
          <p>
            <span>请</span>
            <a href="###">登录</a>
            <a href="###" class="register">免费注册</a>
          </p>
        </div>
      </div>
    </div>
    <!--头部第二行 搜索区域-->
  </header>
</template>

<script>
export default {};
</script>

<style lang="css">
.header > .top {
  background-color: #eaeaea;
  height: 50px;
  line-height: 50px;
}
.header > .top .container {
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.header > .top .container .loginList {
  float: left;
}
.header > .top .container .loginList p {
  float: left;
  margin-right: 10px;
}
.header > .top .container .loginList p .register {
  border-left: 1px solid #b3aeae;
  padding: 0 5px;
  margin-left: 5px;
}
.header > .top .container .typeList {
  float: right;
}
.header > .top .container .typeList a {
  padding: 0 10px;
}
.header > .top .container .typeList a + a {
  border-left: 1px solid #b3aeae;
}
</style>

 

posted @ 2023-03-29 21:46  旺旺大菠萝  阅读(13)  评论(0编辑  收藏  举报