JSFiddle - React, Tailwind, and code Playground
by nikolya223
HTML
<!doctype html>
<html>
<head>
<title>
Test1
</title>
<base href="http://dotatest2111.p.ht/link/">
<link rel="stylesheet" type="text/css" href="../style.css"/>
<div class="logo"><img src="../img/index.png" usemap="#linkINDEX"></div>
<map name="linkINDEX">
<area href="../index.html" shape="rect" coords="60,240,170,275" >
</map>
<!-- Put this script tag to the <head> of your page -->
<script type="text/javascript">
VK.init({apiId: API_ID, onlyWidgets: true});
</script>
<script type="text/javascript" src="//vk.com/js/api/openapi.js?83"></script>
</head>
<body>
<!-- Put this div tag to the place, where the Comments block will be -->
<div id="vk_comments"></div>
<script type="text/javascript">
VK.Widgets.Comments("vk_comments", {limit: 5, width: "496", attach: "*"});
</script>
</body>
</html>
CSS
.wrapper {
outline: 1px solid #C00;
margin: 0 auto;
padding: 5px;
overflow: hidden;
}
.col-l {
float: left;
width: 100px;
margin: 0 5px 0 0;
padding: 5px;
background: pink;
border: 2px solid red;
}
.col-r {
float: right;
width: 200px;
margin: 0 0 0 5px;
padding: 5px;
background: lightgreen;
border: 2px solid green;
}
.col-c {
overflow: hidden;
padding: 5px;
background: silver;
border: 2px solid grey;
}