HTML table only displays the outer border of the table

HTML table only displays the outer border of the table

I would like to ask a question. In Dreamweaver, I have made a login form (including login, registration, and forgotten password) with three rows and one column. I want to only display the outer border of the form. How can I use code to achieve this?

<table width=”200″ border=”0″ style=”border:1px solid #000000;”>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>

That style only has the outer border, if you use border directly, it will have all the borders of the table.

border-style:solid;
border-color:Lime; (color)

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  20 JS abbreviation skills to improve work efficiency

>>:  Install Docker on CentOS 7

Recommend

mysql5.7.22 download process diagram

1. Go to the official website www.mysql.com and s...

JavaScript uses setTimeout to achieve countdown effect

In order to enhance the ability to write JavaScri...

MySQL multi-instance configuration application scenario

Table of contents MySQL multiple instances Multi-...

Node implements search box for fuzzy query

This article example shares the specific code for...

Summary of various forms of applying CSS styles in web pages

1. Inline style, placed in <body></body&g...

Example code for implementing anti-shake in Vue

Anti-shake: Prevent repeated clicks from triggeri...

The basic principles and detailed usage of viewport

1. Overview of viewport Mobile browsers usually r...

Develop calculator example code using native javascript

The main function of a calculator is to perform n...

How to create users and manage permissions in MySQL

1. How to create a user and password 1. Enter the...

How to purchase and install Alibaba Cloud servers

1. Purchase a server In the example, the server p...

Detailed explanation of the four transaction isolation levels in MySQL

The test environment of this experiment: Windows ...

Detailed explanation of the construction and use of docker private warehouse

1. Download the repository image docker pull regi...

Vue implements simple comment function

This article shares the specific code of Vue to i...

How to use docker to deploy front-end applications

Docker is becoming more and more popular. It can ...