Tag: 宽度

如何使没有内容的DIV有宽度?

我试图给DIV添加一个宽度,但是我似乎遇到了一个问题,因为它没有内容。 以下是我到目前为止的CSS和HTML,但它不工作: CSS body{ margin:0 auto; width:1000px } ul{ width:800px; } ul li{ clear:both; } .test1{ width:200px; float:left; } HTML <body> <div id="test"> <ul> <li> <div class="test1">width1</div> <div class="test1">width2</div> <div class="test1">width3</div> </li> <li> <div class="test1"></div> <div class="test1">width2</div> <div class="test1">width3</div> </li> <li> <div class="test1"></div> <div class="test1">width2</div> <div class="test1">width3</div> </li> </ul> </div>

在IE中不工作的元素使用初始宽度

我有一个插图canvas和一个图例<table>到它的容器的插件。 在这个插件中, table没有定义width ,在我的CSS中,插件被插入的时候,容器中的表格有一个宽度。 所以,新的div从CSSinheritancetable{ width: 100%}并呈现错误。 我试图用width: initial; ,在Chrome上看起来不错,但IE不喜欢它 检查浏览器的兼容性 我承认在脚本/插件中更改/强制插入CSS,因为它必须在任何环境中工作。 这里最好的解决scheme是什么?

Android以编程方式设置自定义视图的高度和宽度

我创build了一个名为Graphview的自定义视图。 这里是GraphView类的结构。 public class GraphView extends View { public GraphView(Context context, float[] values, String title, String[] horlabels, String[] verlabels, boolean type) { super(context); …….. } ……………… …………….. } 我使用addview()在addview()添加了视图。 它工作正常。 现在我想为GraphView设置高度和宽度。 怎么做?

宽度为100%的HTMLinput文本框溢出表格单元格

有谁知道为什么宽度为100%的input元素超过表的单元格边框。 在下面的简单例子中,input框越过表格的单元格边界,结果是可怕的。 这已经过testing,它以相同的方式发生在Firefox,IE7和Safari上。 这对你有意义吗? 我错过了什么,你知道一个可能的解决scheme吗? <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <!– don't use closing slash in meta tag, it breaks HTML4.01 transitional –> <title>Test input text in table</title> <style type="text/css"> table {border-top: 1px solid #ff0000; border-left: 1px solid #ff0000;} table td {border-right: 1px solid #00ff00; border-bottom: 1px […]

覆盖并重置CSS样式:auto或none都不起作用

我想覆盖下面为所有表定义的CSS样式: table { font-size: 12px; width: 100%; min-width: 400px; display:inline-table; } 我有一个名为'other'具体表。 最后桌子的装饰应该看起来像: table.other { font-size: 12px; } 所以我需要删除3个属性: width , min-width和display 我试图重置none或auto ,但没有帮助,我的意思是这些情况下: table.other { width: auto; min-width: auto; display:auto; } table.other { width: none; min-width: none; display:none; }

CSS:100%的宽度或高度,同时保持宽高比?

目前,使用STYLE,我可以使用width: 100%和高度auto (反之亦然),但我仍然无法将图像限制在特定的位置,分别太宽或太高。 有任何想法吗?

选项卡没有采取全屏的平板设备

我有安装标签作为UPDATE 29/05/2015 这个职位。 Tabs在我的Nexus 4手机上占有全部的宽度,但在nexus 7平板电脑上却没有覆盖全屏宽度。 Nexus 7截图 Nexus 4截图

iPad浏览器WIDTH&HEIGHT标准

有没有人知道在iPad上查看任何网页时最安全的宽度和高度? 我想尽可能避免滚动条。 谢谢。 埃里克

IE 8:背景大小的修复

我试图添加背景大小的IE浏览器,但它不工作: HTML <h2 id="news">Notícias <img src="white-marker.png" alt="" /></h2> CSS: div#content h2#news { background: url('..http://img.dovov.comnews-background.jpg') no-repeat; background-size: 100%; border-radius: 20px; color: #fff; margin: 20px 0 0 20px; padding: 8px 20px; width: 90%; -moz-background-size: 100%; -moz-border-radius: 20px; -webkit-background-size: 100%; -webkit-border-radius: 20px; } filter有什么问题?

在宽度属性的CSS \ 9

这是什么意思? 我猜这是一个浏览器黑客,但我一直没能find它究竟是什么。 width: 500px\9; \9的意义是什么?