作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编辑我的 WP 后端,但找不到使我的菜单按钮随页面滚动的支持。我可以使菜单栏随页面滚动,但这个按钮有点不同。它是一个小框,单击时会展开以显示菜单选项。
如何让未展开的菜单按钮随页面滚动?下面是我的 header.php 代码,其中包含我在 firefox 中检查 html 时发现的相同 div 按钮类
<button class = "menu-toggle x"></button>)
这是 header.php 代码(抱歉,它看起来很奇怪——无法在此处读取它)
<button class="menu-toggle x">
<span class="lines"></span>
<span class="screen-reader-text"><?php _e( 'Primary Menu', 'intergalactic' ); ?></span>
</button>
<div class="slide-menu">
<nav id="site-navigation" class="main-navigation" role="navigation">
<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
</nav><!-- #site-navigation -->
<?php if ( has_nav_menu( 'social' ) ) : ?>
<?php wp_nav_menu( array( 'theme_location' => 'social', 'depth' => 1, 'link_before' =>
'<span class="screen-reader-text">', 'link_after' => '</span>', 'container_class' => 'social-links' )
); ?>
<?php endif; ?>
<?php if ( is_active_sidebar( 'sidebar-1' ) ) {
get_sidebar();
} ?>
</div>
最佳答案
帕斯卡尔,
这是前端一般用CSS处理的东西,也很简单...
.menu-toggle{
position:fixed;
top:0px; /* or whatever is best for your design */
right:0px; /* or whatever is best for your design */
z-index: 999; /* this assures that it stays in front of all other content*/
}
关于html - 使切换菜单按钮变粘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26345420/
查看此页面:http://jsbin.com/itufix使用 IE(页面自动启用 IE7 模式)。 在这里您将找到如何使用显示 block 呈现内联元素(输入和跨度)的示例。所有元素的边距和填充都设
我有一个自定义的 UITabvleViewCell,其中有一个 UIImageView。当在 cellForRowAtIndexPath 中设置单元格时,我可以很好地设置图像(尽管我没有),但是在某些
我是一名优秀的程序员,十分优秀!