JSFiddle - React, Tailwind, and code Playground

by Skorik_Alekseii

HTML

<!DOCTYPE html>

<html lang="ru-RU">

<head>
	<meta charset="UTF-8"/>
	<title>таблица1</title>
	<link rel="stylesheet" href="style.css"/>
</head>

<body>
		<table>
		<tr>
			<td rowspan="3">kkk</td>
			<td>jj</td>
			<td>ff</td>
		</tr>
		<tr>
			<td colspan="2" class="wisota">jj</td>
		</tr>
		<tr>
			<td>jjj</td>
			<td>kkk</td>
		</tr>
	</table>
	
</body>

</html>

CSS

table{
	border:1px solid #000;
	width:75%;
	border-spacing:0;
	border-collapse:collapse;
	}
td{
	width:33.33%;
	border:1px solid #000;
}
.wisota{
	height:200px;
}
.tablerod{
	width:90%;
	border-collapse:collapse;
	margin:0 auto;
	text-align:center;
}
.borde1r{
	width:25px;
}
.doctable1e{
	width:80%;
	margin:0 auto;
	position:relative;
}
.bord1
{
	height:200px;
}
.bord2
{
	height:200px;
}