Interview question: Three-row and three-column layout, tables are merged and nested tables are not allowed

Interview question: Three-row and three-column layout, tables are merged and nested tables are not allowed
There is an interview question that requires: a three-row and three-column layout, where the second column of the first row and the second column of the second row are merged, and the second column of the third row and the third column are merged. Nested tables are not allowed.


Copy code
The code is as follows:

<!DOCTYPE HTML >
<html lang="ch-CN">
<head>
<meta charset="utf-8">
<title> </title>
<style>
html,body{padding:10px;margin: 0px;width:100%;height:100%;overflow: hidden;}
td{width:100px; height:100px;text-align:center; font-family:arial; border:1px solid #aaa; vertical-align:center;}
</style>
</head>
<body>
<table border="1" style='border:1px solid #aaa' cellspacing="0" cellpadding="10">
<tr>
<td>1</td>
<td rowspan='2'>2</td>
<td>3</td>
</tr>
<tr>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>6</td>
<td colspan="2">7</td>
</tr>
</table>
</body>
</html>

<<:  CSS code to achieve background gradient and automatic full screen

>>:  JavaScript operation elements teach you how to change the page content style

Recommend

Measured image HTTP request

Please open the test page in a mainstream browser...

Mysql string interception and obtaining data in the specified string

Preface: I encountered a requirement to extract s...

Div adaptive height automatically fills the remaining height

Scenario 1: Html: <div class="outer"...

Summarize the common properties of BigIn functions in JavaScript

Table of contents 1. Overview 2. Attributes 1. Ma...

Implementation of MySQL5.7 mysqldump backup and recovery

MySQL backup Cold backup:停止服務進行備份,即停止數據庫的寫入Hot ba...

Tutorial on building a zookeeper server on Windows

Installation & Configuration The official web...

Detailed tutorial on how to automatically install CentOS7.6 using PXE

1. Demand The base has 300 new servers, and needs...

Implementation of Node connection to MySQL query transaction processing

Table of contents Enter the topic mysql add, dele...

Two usages of iFrame tags in HTML

I have been working on a project recently - Budou...

In-depth exploration of whether Mysql fuzzy query is case-sensitive

Preface Recently, I have been busy writing a smal...

A brief discussion on the fun of :focus-within in CSS

I believe some people have seen this picture of c...

MySQL Order By Multi-Field Sorting Rules Code Example

Say it in advance On a whim, I want to know what ...

Use CSS's clip-path property to display irregular graphics

clip-path CSS properties use clipping to create t...

Detailed explanation of single-row function code of date type in MySQL

Date-type single-row functions in MySQL: CURDATE(...