gpt4 book ai didi

html - Div 100% 宽度减去图像宽度

转载 作者:太空宇宙 更新时间:2023-11-04 12:55:08 24 4
gpt4 key购买 nike

我正在设计一个移动 html5 网站。

http://jsfiddle.net/ko7o8kkd/

我需要做什么才能让...定义的绿色部分

<div class="toplevelpadding searchbar">

...尽可能多地占用宽度,但右侧的搜索图标仍然在同一行上?

基本上,它应该有 width=100%-(iconwidth + somepadding)。

这是如何做到最好的?它应该尽可能跨浏览器。

感谢任何帮助。

最佳答案

如果图标的宽度和padding是静态的你可以使用css3的calc方法

假设图标 = 50px,总内边距为 20px;

/* Firefox */
width: -moz-calc(100% - 70px);
/* WebKit */
width: -webkit-calc(100% - 70px);
/* Opera */
width: -o-calc(100% - 70px);
/* Standard */
width: calc(100% - 70px);

关于html - Div 100% 宽度减去图像宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25908107/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com