我对导航栏和网格系统有一些疑问。
Q1.grid系统
我左右两个100%高度的导航栏,但中心文字似乎位于左侧:0,左侧导航栏重叠。
这是我的代码的链接。
data segment
msg db 0dh,0ah,"Your string: $"
rev db 0dh,0ah,"Reverted: $"
s1 db 20 dup('$')
s2 db 20 dup('$')
data ends
code segment
assume cs:code,ds:data
start:
mov ax,data
mov ds,ax
lea dx,msg
mov ah,09h
int 21h
lea si,s1
lea di,s2
mov bx,0
l1: mov ah,01h
int 21h
mov [si],al
inc bx
inc si
cmp al,31h
jnz l1
mov cx,bx
mov di,bx
dec1: dec si
loop dec1
mov cx,bx
l2: mov al,[si]
mov [di],al
dec di
inc si
loop l2
lea dx,rev
mov ah,09h
int 21h
mov cx,bx
l3: mov ah,02h
mov dl,[di]
int 21h
inc di
loop l3
mov ah,4ch
int 21h
code ends
end start

html, body {
height: 100%;
width: 100%;
margin: 0;
}
[class*="col-"] {
float: left;
}
.col-1 {
width: 4.16%;
}
.col-2 {
width: 8.33%;
}
.col-3 {
width: 12.5%;
}
.col-4 {
width: 16.66%;
}
.col-5 {
width: 20.83%;
}
.col-6 {
width: 25%;
}
.col-7 {
width: 29.16;
}
.col-8 {
width: 33.33%;
}
.col-9 {
width: 37.5%;
}
.col-10 {
width: 41.66%;
}
.col-11 {
width: 45.83%;
}
.col-12 {
width: 50%;
}
.col-13 {
width: 54.16%;
}
.col-14 {
width: 58.33%;
}
.col-15 {
width: 62.5%;
}
.col-16 {
width: 66.66%;
}
.col-17 {
width: 70.83%;
}
.col-18 {
width: 75%;
}
.col-19 {
width: 79.16%;
}
.col-20 {
width: 83.33%;
}
.col-21 {
width: 87.5%;
}
.col-22 {
width: 91.66%;
}
.col-23 {
width: 95.83%;
}
.col-24 {
width: 100%;
}
.navbar-fixed-top {
position: fixed;
top: 0;
border-radius: 0;
right: 0;
left: 0;
padding-left: 0;
padding-right: 0;
z-index: 1030;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: auto;
background-color: #1c2333;
clear: both;
}
li {
float: left;
border: 1 white dashed;
line-height: 50px;
}
li:last-child {
border-right: none;
}
li a {
height: 57px;
width: 60px;
display: block;
color: #8fa5be;
text-align: center;
padding: 10px 10px;
text-decoration: none;
border-radius: 0;
overflow: visible;
border-style: solid transparent;
cursor: pointer;
}
.active, li a:hover {
color: #ffffff;
background-color: #3099f5;
}
/*--*/
.nv{
position:fixed;
display: flex;
width:4.16%;
height: 100%;
}
.nvr {
display: flex;
position: fixed;
height: 100%;
width: 80px;
border: none;
border-radius: 0;
margin: 0;
}
.height-100 {
height: 100%;
}

图为我想要的。 What I actually want .
Q2。 如何使用顶部和两侧制作相同的文本块大小?
在全屏幕上,它们的大小相同,但我想知道该怎么做。 非常感谢你。