相对于pug文件中页面上其他元素的响应头

时间:2018-04-08 20:48:56

标签: html css responsive-design pug

我有两个关于响应式布局的问题。

  1. 在页面上创建标题,以便无论浏览器的大小如何,它都有恒定的左右边距。

  2. 在中心创建一个标题,以便1)它居中,并且2)无论浏览器的大小如何都保持居中。

  3. 目前使用预定义的pug模板执行此操作,并且标题元素在插入时将其向下推。

    layout.pug在这里:

    doctype html
    html(lang='en')
        head
            include includes/head.pug
            //- block header
    
        body
            //- PRELOADER
            .page-loader
                .loader Loading...
            //- /PRELOADER
    
    
            //- problem: when the navbar is included: the title gets pushed down
            include includes/navbar.html
    
            block content
            //- block footer
            include includes/footer-js-files.pug
    

    home.pug在这里:

    extends layout.pug
    
    block content
    
      .wrapper
        include includes/video.pug
    

    最后navbar.pug:F

    <h3>
      <p style="text-align: left; width:49%; display: inline-block; font-weight: bold">
        XIAO LING
      </p>
      <p style="text-align: right; width:50%;  display: inline-block;">CV</p>
    </h3>
    

0 个答案:

没有答案