Banner1.vue 440 B

1234567891011121314151617181920212223
  1. <template>
  2. <!-- 第一个广告位 -->
  3. <div id="banner1">
  4. <div class="inner">
  5. <img src="http://img.bjzxtw.org.cn/master/bjzxtw/public/image/banner1.png" alt="三农资讯网广告位">
  6. </div>
  7. </div>
  8. </template>
  9. <script>
  10. </script>
  11. <style lang="less" scoped>
  12. #banner1 {
  13. width: 100%;
  14. height: 90px;
  15. margin: 40px 0 40px;
  16. img{
  17. width: 1200px;
  18. height: 90px;
  19. }
  20. }
  21. </style>