How do i add border in all four side of browser page no matter what browser, whatever resolution. Is there any such css or javascript code ?
If you want border around viewport you can try the following:
<html>
<head>
<style>
body {position: fixed; top:0; left: 0; bottom: -5px; right: -5px;
border: 5px solid red;}
</style>
</head>
<body>
</body>
</html>
Depending on what you want exactly even better might be to use something as YUI Layout Manager.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With