Fixed-position header
-
- Mesaje:83
Fixed-position header
Salutari, are cineva vreun exemplu css sau javascript pentru header.urile fixe cum au cei de la 220.ro sau 4tuning.ro/ ?
MarPlo
Mesaje:4343
Salut
Cu proprietatea CSS: position : fixed; .
Vezi codul asta:
Cu proprietatea CSS: position : fixed; .
Vezi codul asta:
Cod: Selectaţi tot
<style type="text/css"><!--
#header {
position:fixed;
top:0;
left:0;
width:100%;
height:55px;
margin:0;
border:blue;
background:#abcdef;
}
--></style>
<div id="header"> marplo.net/ </div>