+1 717-843-4790
Customer Login »
Examples
The following is a list of sample code for which our clients have asked. Feel free to use this as necessary with your KioWare project.
Remove Body Margins
Remove all spacing to left top and left of a picture:
Copy to Clipboard
|
View Code In Action
|
Back
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML><head>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style>
</head><body>
<img src="/kwwmedia/KioWare_logo_602wide.png">
</body>
</HTML>