hi guys need help here,
wanna need some advice on what would be the best technique for this layout
see the link below
hi guys need help here,
wanna need some advice on what would be the best technique for this layout
see the link below
you can start with something like this...
<!doctype html>
<html>
<head>
<title>My Page</title>
<style>
#wrapper{
margin:0px auto;
width:800px;
height:500px;
border:1px solid black;}
#inner {
margin:75px 30px;
height:200px;
border: 1px solid black;
position:relative;}
#box {
position:absolute;
left:50px;top:-50px;
border: 1px solid black;
height:100px;
width:100px;
background-color:white}
</style>
</head>
<body>
<div id="wrapper">
<div id="inner">
<div id="box"></div>
</div>
</div>
</body>
</html>
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.