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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

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)

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

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.

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

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

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 find the length of hypotenuse in Java? How to find the length of hypotenuse in Java? Sep 09, 2023 pm 10:33 PM

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

How to verify the length of input text in golang How to verify the length of input text in golang Jun 24, 2023 am 11:52 AM

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:=

See all articles