- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有以下包含列表及其对齐方式的 HTML/CSS。我设法在 div 的每个 Angular 落获取列表元素,现在我想尝试将图像(基本上用作“列表点”)放在顶部和底部,因此顶部元素的图像居中在它们上方,底部元素在它们下方居中。有人可以帮我吗?
body {
margin:0;
}
.container {
display:flex;
flex-wrap:wrap;
flex-direction:row;
height:100vh;
background-color: beige;
}
.container > div {
min-height: 100vh;
border:1px solid black;
box-sizing:border-box;
background-color: inherit;
}
.half-width {
width:50%;
}
.half-width > .half-width-content{
position: relative;
margin-top: 0;
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.list-div {
position: relative;
display: flex;
justify-content: center;
align-items: center;
width: 75%;
height: 75%;
}
.list-div ul {
padding: 0;
margin-top: 15%;
width: 75%;
}
.list-div li {
position: absolute;
}
.list-div li:nth-child(1){
top: 0;
left: 0;
background: url(https://fakeimg.pl/30x30/?text=A);
list-style-type: none;
margin: 0;
padding: 10px 10px 10px 48px;
vertical-align: middle;
background-repeat: no-repeat;
background-position-y: 50%;
}
.list-div li:nth-child(2){
top: 0;
right: 0;
background: url(https://fakeimg.pl/30x30/?text=B);
list-style-type: none;
margin: 0;
padding: 10px 10px 10px 48px;
vertical-align: middle;
background-repeat: no-repeat;
background-position-y: 50%;
}
.list-div li:nth-child(3){
bottom: 0;
left: 0;
background: url(https://fakeimg.pl/30x30/?text=C);
list-style-type: none;
margin: 0;
padding: 10px 10px 10px 48px;
vertical-align: middle;
background-repeat: no-repeat;
background-position-y: 50%;
}
.list-div li:nth-child(4){
bottom: 0;
right: 0;
background: url(https://fakeimg.pl/30x30/?text=D);
list-style-type: none;
margin: 0;
padding: 10px 10px 10px 48px;
vertical-align: middle;
background-repeat: no-repeat;
background-position-y: 50%;
}
@media max-width:768px{
.list-div li.animate{
visibility: visible;
}
.list-div {
display: flex;
justify-content: center;
align-items: center;
}
}
<div class="container">
<div class="half-width">
<div class="half-width-content" id="list-cont">
<div class="list-div">
<ul>
<li>Entry A</li>
<li>Entry B</li>
<li>Entry C</li>
<li>Entry D</li>
</ul>
</div>
</div>
</div>
</div>
最佳答案
您可以使用以下内容
body {
margin:0;
}
.container {
display:flex;
flex-wrap:wrap;
flex-direction:row;
height:100vh;
background-color: beige;
}
.container > div {
min-height: 100vh;
border:1px solid black;
box-sizing:border-box;
background-color: inherit;
}
.half-width {
width:50%;
}
.half-width > .half-width-content{
position: relative;
margin-top: 0;
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.list-div {
position: relative;
display: flex;
justify-content: center;
align-items: center;
width: 75%;
height: 75%;
}
.list-div ul {
padding: 0;
margin-top: 15%;
width: 75%;
}
.list-div li {
position: absolute;
}
.list-div li:nth-child(1){
top: 0;
left: 0;
background: url(https://fakeimg.pl/30x30/?text=A);
list-style-type: none;
padding-top: 40px;
box-sizing: border-box;
text-align:center;
vertical-align: middle;
background-repeat: no-repeat;
background-position-x: 50%;
width:100px;
}
.list-div li:nth-child(2){
top: 0;
right: 0;
background: url(https://fakeimg.pl/30x30/?text=B);
list-style-type: none;
padding-top: 40px;
box-sizing: border-box;
text-align:center;
vertical-align: middle;
background-repeat: no-repeat;
background-position-x: 50%;
width:100px;
}
.list-div li:nth-child(3){
bottom: 0;
left: 0;
background: url(https://fakeimg.pl/30x30/?text=C);
list-style-type: none;
padding-bottom: 40px;
box-sizing: border-box;
text-align:center;
vertical-align: middle;
background-repeat: no-repeat;
background-position-x: 50%;
background-position-y: 100%;
width:100px;
}
.list-div li:nth-child(4){
bottom: 0;
right: 0;
background: url(https://fakeimg.pl/30x30/?text=D);
list-style-type: none;
padding-bottom: 40px;
box-sizing: border-box;
text-align:center;
vertical-align: middle;
background-repeat: no-repeat;
background-position-x: 50%;
background-position-y: 100%;
width:100px;
}
@media max-width:768px{
.list-div li.animate{
visibility: visible;
}
.list-div {
display: flex;
justify-content: center;
align-items: center;
}
}
<div class="container">
<div class="half-width">
<div class="half-width-content" id="list-cont">
<div class="list-div">
<ul>
<li>Entry A</li>
<li>Entry B</li>
<li>Entry C</li>
<li>Entry D</li>
</ul>
</div>
</div>
</div>
</div>
关于HTML/CSS 列表图像/元素符号上方/下方,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52381014/
我正在使用matplotlib创建简单的线图。我的图是一个简单的时间序列数据集,其中我沿x轴有时间,而我在y轴上有测量的值。 y值可以具有正值或负值,如果y值> 0,则我想用蓝色填充行上方和下方的颜色
我有一个简单的菜单,当单击菜单项时,该菜单会滚动到某个部分。 例如: Contact 将滚动到: 但是我也有一个始终粘在顶部的菜单,并且该菜单的高度不是用滚动脚本计算的。因此菜单总是悬停在元素的顶部
我有一个 UISearchBar 和 UISearchDisplayController,一切都很好,但我的范围选择器显示在文本字段旁边而不是下方。我知道这是设备横向时的预期操作,但由于我在 UISp
因此,我正在创建一个根据用户输入增大和缩小的 ListView ,我需要四个按钮,但我不知道如何让按钮与 ListView 的底部对齐并位于2x2 网格时尚。我已经尝试过相对布局,但似乎不起作用。谢谢
我正在使用的系统无法直接编辑每个页面上的 HTML。我想添加特定页面正文的顶部,但我输入 HTML 的框会自动将脚本放置在上面 我尝试过这个: $('body').prepend(''); 任何帮
设计模式一切都很好,但在实时导航栏位于 ScrollView 下方我该如何解决这个问题?请帮忙 最佳答案 同样,在没有看到任何代码的情况下很难说,但我相信导航栏根本没有显示。如果您直接从另一个 Vie
我现在必须重用和修改其他人的代码来创建图像处理应用程序。以下代码用于设置框架及其 GUI。我遇到的问题是,当在菜单栏上单击文件字时,菜单项列在 originalImage 容器中包含的 Canvas
我创建了一个 Angular 指令,用户可以在其中根据一天中的时间更改某些设置。下面是我已有的图片: 我想在 div 的 x 轴上添加一种准确表示时间的“滴答”,以向用户显示他在做什么,如下图所示:
这是下面的代码。 body { font-family: "Lato", sans-serif; } .sidenav { width: 130px; positio
这个问题在这里已经有了答案: Z-Index not working? [closed] (1 个回答) 关闭 5 年前。
我搜索了这个并尝试了 Z 轴的东西,但无济于事。基本上,我的导航栏在其下方的 div 下方显示有子菜单。那个 div 发生了不透明的事情,这一定与它有关。我需要这些显示在 div 上方!! JS fi
我正在处理的网站的某些页面使用脚本自动创建基于页面标题的目录。但是,我在获取“toc”div 以将页面的其余内容推送到其下方时遇到了一些问题。 TOC div 在我页面的最里面的 div 中,“con
我的代码 http://jsfiddle.net/p796z/1/ HTML Content Content Content Content Content Content
请看下面的代码: Button dropdown
我有一个表格,我希望它直接位于 Logo 下方位于页面中间。到目前为止,我似乎做不到更有什者。任何帮助将不胜感激。谢谢。 这是 HTML 代码:
我的 web 应用程序在与 jQuery Mobile 和 cordova 的聊天部分出现问题。我决定用 textaera 和发送消息的按钮修复页脚。但是当我触摸文本区域写消息时,我的键盘没有出现。我
我有两个来回箭头,可以单击它们在我的单页网站上的框架中浏览照片。我的术语在这里可能不正确。保存照片和前后箭头的 div 出现在我的屏幕下方,而不是在屏幕场景 div 中。我可以将图像向上移动以出现在屏
我使用自定义 CSS 和 Bootstrap 类名称构建了这个 header 。我已经尝试了 z-index、float: initial 属性。提前致谢 .branding-preview {
我有两个部分介绍网站上的用例和好处。如下。 .onboardmessaging { min-width: 100%; } .onboardmessagingwrap { min-wi
所以,我在网站上发现了这个很酷的 css/html slider ,所以我下载了代码,并打算研究它。我已经开始根据自己的需要对其进行编辑和设计,然后我遇到了这个问题:当我添加比原始尺寸更大的图像时,导
我是一名优秀的程序员,十分优秀!