Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

Button height not working in v95.0?

  • 1 trả lời
  • 1 gặp vấn đề này
  • 2 lượt xem
  • Trả lời mới nhất được viết bởi CharlesEF

more options

Hi All,

What is the secret to getting a button height percentage to work in a table td? This code works fine in my Chromium browser but not FireFox v95.0 on Win10 Pro:

<td class="day date">

 <button type="button" style="height: 75%; width: 75%;">1</button>

</td>

The width seems to work but not height. Only the table element has a height of 100%. Since this is a calendar app I prefer not to set height for tr and td, if possible.

Is there any way to get this to work otherwise?


Thanks for any help,

Charles

Hi All, What is the secret to getting a button height percentage to work in a table td? This code works fine in my Chromium browser but not FireFox v95.0 on Win10 Pro: <td class="day date"> <button type="button" style="height: 75%; width: 75%;">1</button> </td> The width seems to work but not height. Only the table element has a height of 100%. Since this is a calendar app I prefer not to set height for tr and td, if possible. Is there any way to get this to work otherwise? Thanks for any help, Charles

Tất cả các câu trả lời (1)

more options

I think I found a solution for my problem. At least Firefox and my Chromium browsers look the same. I had to give my table tr's and td's a height after all. However, I found a height of 10% was all that was needed.

Unless someone suggests something better I will consider my problem solved.


Thank you,

Charles