我必须显示两个 div(进出),以便它们一个位于左侧,另一个位于右侧。
使用这个 css 代码,它们非常适合全屏显示,但我希望能够将它们放入父 div 中,这将是容器
#in{
position: fixed;
top: 0;
left: 0;
bottom: 0;
width: 50%;
overflow: auto;
font-size: 12px;
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
#out{
position: fixed;
top: 0;
right: 0;
left: 50%;
bottom: 0;
overflow: auto;
padding: 10px;
padding-left: 20px;
color: #444;
font-family:Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif;
font-size: 16px;
line-height: 1.5em
}
任何人都可以帮我修改这段代码吗?
谢谢