Table of Contents
回复讨论(解决方案)
Home Web Front-end HTML Tutorial table 中如何画一条线?加一个tr的话,线长度不够100%。_html/css_WEB-ITnose

table 中如何画一条线?加一个tr的话,线长度不够100%。_html/css_WEB-ITnose

Jun 21, 2016 am 09:23 AM
100 table tr length


<tr  style="background:#000000;height:1px;width:100%">		<td height="1px;"></td></tr>
Copy after login

这样的话,线总是有一点不到边上,怎么样才能让线100%占据表格?


 <table style="background: #0CA3DC" border="0">		<tr>		<td height="20px;">aaaaaaaa</td>		</tr>		<tr  style="background:#000000;height:1px;width:100%">		<td height="1px;"></td>		</tr>		<tr>		<td>bbbbb</td>		</tr>		<tr> </tr></table>
Copy after login


回复讨论(解决方案)

table加border-collapse:collapse

border-collapse: collapse;
Copy after login

你这样和作边框有什么差?为什么不直接用边框?

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1664
14
PHP Tutorial
1266
29
C# Tutorial
1239
24
What is the PHP array length limit? What is the PHP array length limit? Mar 13, 2024 pm 06:30 PM

There is no fixed limit to the length of an array in PHP, it can be dynamically adjusted according to the system's memory size. In PHP, an array is a very flexible data structure that can store any number of elements, and each element can be a value of any type, or even another array. The length limit of PHP arrays mainly depends on the memory size of the system and the memory limit of PHP configuration. Generally speaking, if the system's memory is large enough and PHP's memory limit is high enough, the length of the array can be very large. However, if your system is low on memory or

Is there a limit to PHP array length? Is there a limit to PHP array length? Mar 13, 2024 pm 06:36 PM

Is there a limit to PHP array length? Need specific code examples In PHP, the array length is not subject to a fixed limit, and the array size can be dynamically adjusted according to the actual limit of the system memory. Arrays in PHP are dynamic arrays, so they can grow or shrink dynamically as needed. In PHP, an array is an ordered mapped data structure, and array elements can be accessed using array subscripts or associative array key values. Let's look at a specific code example to demonstrate whether the PHP array length is limited. First, we can pass the following code

How to use vue3 table component How to use vue3 table component May 12, 2023 pm 09:40 PM

Basic table Before developing the table component, first think about what style of API to use. Because the author uses element in production work, the styles of the previous components are similar to element, but this time I do not plan to use the element style. , I plan to change it and display it directly: We expect users to use it like this: constdataList=[{id:1,name:'"JavaEE Enterprise Application Practice"',author:'dev1ce',price:'10.22',desc:&# 3

Given an array, find the maximum sum of the lengths of two strings that do not have the same characters. Given an array, find the maximum sum of the lengths of two strings that do not have the same characters. Aug 29, 2023 pm 06:45 PM

The purpose of this article is to implement a program that maximizes the sum of the lengths of a pair of strings that have no common characters in a given array. By definition, a string is a collection of characters. Problem Statement Implement a program to maximize the sum of lengths of a pair of strings that have no common characters in a given array. Example 1LetusconsidertheInputarray:a[]=["efgh","hat","fto","car","wxyz","fan"]Outputobtained:8 Description There are no common characters in the strings "abcd" and "wxyz". As a result, the combined length of the two strings is 4+4, which is equal to 8, which is the longest length among all feasible pairs. Example 2Letu

Is tr in php a column or a row? Is tr in php a column or a row? Aug 03, 2023 pm 02:53 PM

tr in php is row. In web development, table is a common HTML element used to display data. Tables are composed of rows and columns. The rows are used to display each record of the data, and the columns are used to display the value of each field. By nesting td tags, the content of each cell can be defined within the tr tag.

Rare $200 coin used to knock more than $1000 off an Australian's bill Rare $200 coin used to knock more than $1000 off an Australian's bill Aug 22, 2024 pm 03:36 PM

Coins and banknotes are considered legal tender in Australia, but their worth can vary from the dollar value they are assigned if they are out of the ordinary.

Multiple perspectives on the use and importance of the len function Multiple perspectives on the use and importance of the len function Dec 28, 2023 am 08:38 AM

The role and meaning of the len function is interpreted from different angles. The len function is one of the commonly used functions in the Python programming language. It is mainly used to return the length or number of elements of a container object (such as string, list, tuple, etc.). This simple function plays a very important role when writing programs, and its function and meaning can be interpreted from many angles. This article will explain the len function from the perspectives of performance, readability, and container type, and provide specific code examples. 1. Performance perspective When processing large-scale data, the performance of the program

How to add a row to table in jquery How to add a row to table in jquery May 29, 2023 pm 01:24 PM

How to add a row to a table with jquery: 1. Create an html sample file and reference the jQuery file; 2. Use "table", "tr", "td" tags to create a table; 3. Create a button button and bind the onclick click event , and then execute the "addhang()" function; 4. Define a variable tr within the function to save the table rows that need to be added. The $ symbol obtains the table object, and the "append()" method is used to add a row to the table.

See all articles