如何在另一个div内将利润设置为两个div?

时间:2019-05-28 06:02:01

标签: css3 background-position

我想在另一个div内为两个div设置不同的边距。第一个div应该出现在第二个div的顶部。

<div style="position:relative">
 <div style="position: absolute;margin-top:24px">
   This should be appar top of the second div.
 </div>
 <div style="margin-top:24px">
   second div
 </div>
</div

我使用了上面提到的代码,但是第一格也得到了margin 50,而不是margin 24
如何解决此问题?
无法在第二个格中使用position:absoulte

2 个答案:

答案 0 :(得分:1)

您可以使用以下代码:

   <div style="position:relative">
     <div style="posiotion:absolute, top:24px">
       This should be appar top of the second div.
     </div>
     <div>
       second div
     </div>
   </div>

答案 1 :(得分:0)

在div中输入此代码

def echo_socket(ws):
    start=time.time()
    f=open("acc.txt","w")
    print 'Server Started'
    while True:
        message = ws.receive()
        #print(message)
        ws.send(message)
        if 10<(time.time()- start):
           print>>f,message
           f.close()