Home Backend Development PHP Tutorial Tongda OA2015 list control uses multi-line input box to set the display height of each line

Tongda OA2015 list control uses multi-line input box to set the display height of each line

Jul 28, 2016 am 08:28 AM
font height px size


For example: DATA_22 is the name of the list control:

#LV_22  TD{
height:90px;
  font-size:12px;
   line-height:22px;
}
#LV_22 tr:first-child td {
font-size:12px;
  text-align:center;
  line-height:22px;
  height:28px;
}
Copy after login

The above has introduced how Tongda OA2015 list control uses a multi-line input box to set the display height of each line, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

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)

Use java's File.length() function to get the size of the file Use java's File.length() function to get the size of the file Jul 24, 2023 am 08:36 AM

Use Java's File.length() function to get the size of a file. File size is a very common requirement when dealing with file operations. Java provides a very convenient way to get the size of a file, that is, using the length() method of the File class. . This article will introduce how to use this method to get the size of a file and give corresponding code examples. First, we need to create a File object to represent the file we want to get the size of. Here is how to create a File object: Filef

Python's Pygame Font module - how to use text and fonts? Python's Pygame Font module - how to use text and fonts? Apr 23, 2023 pm 11:19 PM

Pygame's Font text and font Pygame uses the pygame.font module to create a font object to achieve the purpose of drawing text. Commonly used methods of this module are as follows: Name Description pygame.font.init() Initialize the font module pygame.font.quit() Uninitialize the font module pygame.font.get_init() Check whether the font module has been initialized and return a Boolean value . pygame.font.get_default_font() gets the file name of the default font. Returns the file name of the font in the system pygame.font.get_fonts() gets all

The evolution and application of CSS layout units: from pixels to relative units based on the font size of the root element The evolution and application of CSS layout units: from pixels to relative units based on the font size of the root element Jan 05, 2024 pm 05:41 PM

From px to rem: The evolution and application of CSS layout units Introduction: In front-end development, we often need to use CSS to implement page layout. Over the past few years, CSS layout units have evolved and developed. Initially we used pixels (px) as the unit to set the size and position of elements. However, with the rise of responsive design and the popularity of mobile devices, pixel units have gradually exposed some problems. In order to solve these problems, the new unit rem came into being and was gradually widely used in CSS layout. one

Detailed explanation of CSS dimension properties: height and width Detailed explanation of CSS dimension properties: height and width Oct 21, 2023 pm 12:42 PM

Detailed explanation of CSS dimension properties: height and width In front-end development, CSS is a powerful style definition language. Among them, height and width are the two most basic dimension attributes, used to define the height and width of the element. This article will analyze these two properties in detail and provide specific code examples. 1. Height attribute The height attribute is used to define the height of an element. You can use pixel, percentage or

Use the size() method of the TreeSet class to get the number of elements in the tree collection Use the size() method of the TreeSet class to get the number of elements in the tree collection Jul 24, 2023 am 11:05 AM

Title: Use the size() method of the TreeSet class to obtain the number of elements in the tree collection. Introduction TreeSet is an ordered collection in the Java collection framework. It implements the SortedSet interface and uses the red-black tree data structure to implement it. TreeSet can be sorted according to the natural order of elements, or by using a Comparator custom comparator. This article will introduce how to use the size() method of the TreeSet class to obtain the number of elements in the tree collection and provide

Detailed tutorial on performance optimization of MySQL database on Linux system. Detailed tutorial on performance optimization of MySQL database on Linux system. Feb 19, 2024 pm 05:51 PM

The following is a detailed tutorial on MySQL database performance optimization under Linux systems: Optimize configuration file: Open the MySQL configuration file (usually my.cnf or my.ini). Adjust the following parameters to optimize performance: key_buffer_size: Adjust the index cache size to fit the size of your data. innodb_buffer_pool_size: Adjust the InnoDB buffer pool size to suit your data size. innodb_log_file_size: Adjust the InnoDB log file size to fit your write load. query_cache_size: Enable and resize the query cache. max_connection

What is the difference between px and em in html5 What is the difference between px and em in html5 Aug 19, 2022 pm 05:36 PM

Differences: 1. The unit length is different, px is the unit of digital image length, and em is a multiple of the character width; 2. The relative objects are different, px is relative to the monitor screen resolution, and em is relative to the font of the text in the current object. size. 3. The value of px is fixed, it is whatever you specify, and the calculation is easier; the value of em is not fixed, and em will inherit the font size of the parent element.

Which units should be used to achieve the adaptive effect of responsive layout? Which units should be used to achieve the adaptive effect of responsive layout? Jan 27, 2024 am 09:47 AM

In responsive layout, what kind of units are used to achieve adaptive effect? With the popularity of mobile devices and the emergence of screens of various sizes, responsive layout has become an important concept in modern web design and development. Through responsive layout, web pages can achieve adaptive effects on different devices and improve user experience. In the process of implementing responsive layout, it is very important to choose appropriate units for layout. This article will introduce some commonly used units and discuss their applicability in different scenarios. First, let’s discuss the most common

See all articles