CSS用于多个顶部固定头或PHP浏览器


CSS for multiple top fixed headers OR PHP browser

我正在创建php浏览器,它工作得很好,但对于顶部固定头,它不工作,即顶部两个头都重叠。

<div style="color:#00AAFF; position:fixed; top:0; width:100%;"><input type="text" value="URL"/></div>

<div style="color:#00AAFF; position:fixed; top:0; width:100%;"><?php curl function for opening url ?></div>

试试这个:

<body style="min-height:1200px;">
<div style="color:#00AAFF; position:fixed; top:0; width:100%;">  
<input type="text" value="URL"/>
 </div>
<div style="color:#00AAFF; position:fixed; top:20px; width:100%;">
 hello<?php curl function for opening url ?>
 </div>