📜  如何固定表格中的行高?

📅  最后修改于: 2021-11-08 06:03:32             🧑  作者: Mango

表格中“tr”行的高度可以很容易地固定。这可以通过在 tr 标签中添加 height 属性来完成。如果不指定高度,则行高根据内容变化。高度可以以像素或百分比指定。

句法:

方法:

  • height 属性用于设置行的高度。它被添加到 标签中。
  • 高度应根据内容指定,以像素或百分比为单位。
  • 如果行中的内容很大,则会溢出。

例子:在这个例子中,第一行的高度已经固定,但第二行的高度没有固定。所以,当我们改变屏幕的大小时,第一行的高度保持不变,但第二行的高度根据内容而变化。但是,如果根据内容指定的高度不够大,这可能不起作用,并且第一行将溢出并且行为类似于第二行。

运行以下代码并改变屏幕大小以查看两行之间的差异:




    
    How to fix height of table tr?
      
    


  

  

  
    
    
    
  
  

  
    
    
    
  
Height of this row remains same on varying screen-sizeGeeks for Geeks         Geeks for Geeks is a Computer Science         Portal created with the goal of         providing well written, well thought         and well-explained solutions for         selected questions.     
Height of this row changes on varying screen-sizeGeeks for Geeks         Geeks for Geeks is a Computer Science         Portal created with the goal of         providing well written, well thought         and well-explained solutions for         selected questions.     
  

输出:

  • 在减小屏幕尺寸之前:

    GFG

  • 减小屏幕尺寸后:

    GFG

HTML 是网页的基础,用于通过构建网站和 Web 应用程序进行网页开发。您可以按照此 HTML 教程和 HTML 示例从头开始学习 HTML。