table 中如何画一条线?加一个tr的话,线长度不够100%。_html/css_WEB-ITnose
<tr style="background:#000000;height:1px;width:100%"> <td height="1px;"></td></tr>
这样的话,线总是有一点不到边上,怎么样才能让线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>
回复讨论(解决方案)
table加border-collapse:collapse
border-collapse: collapse;
你这样和作边框有什么差?为什么不直接用边框?

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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? 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

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.

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

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

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

The hypotenuse is the longest side of a right triangle opposite the right angle. The length of the hypotenuse can be found using Pythagoras' theorem. According to the Pythagoras theorem, the sum of the squares of the lengths of two sides is equal to the square of the length of the third side, that is, a2+b2=c2 where a, b, and c represent the three sides of a right triangle. So,Hypotenuse=Math.sqrt(Math.pow(base,2)+Math.pow(height,2)) In this article, we will see how to find the length of the hypotenuse using Java programming language. Let me show you some examples. The Chinese translation of Instance-1 is: Example-1 Assume that the base length and height are 3 and 4 respectively. Then by using the Pythagorean theorem formula, Length

In golang, validating the length of input text is a common need. Through validation, we can ensure that the entered text meets specific requirements and is within the length we expect. In this article, we will explore how to verify the length of input text using golang. First, we need to understand the commonly used string functions in golang. Among them, the len() function is used to calculate the length of the string. For example, the following code calculates the length of the string "helloworld": str:=
