我希望有一行div(单元格),如果浏览器太窄而不适合它们,则不会换行.
我搜索过Stack,找不到我认为应该是一个简单的CSS问题的工作答案.
单元格具有指定的宽度.但是我不想指定行的宽度,宽度应该自动为其子单元格的宽度.
如果视口太窄而无法容纳行,则div应该溢出滚动条.
请提供您的答案作为工作代码片段,因为我已经尝试了很多我在其他地方看到的解决方案(比如指定宽度:100%并且它们似乎不起作用).
我正在寻找一个HTML/CSS唯一的解决方案,没有JavaScript.
.row {
float: left;
border: 1px solid yellow;
width: 100%;
overflow: auto;
}
.cell {
float: left;
border: 1px solid red;
width: 200px;
height: 100px;
}Run Code Online (Sandbox Code Playgroud)
<div class="row">
<div class="cell">a</div>
<div class="cell">b</div>
<div class="cell">c</div>
</div>Run Code Online (Sandbox Code Playgroud)
目前,我实际上将行的宽度编码为一个非常大的数字.
我在处理针对 Redshift 目录表的查询时遇到了各种问题。
为了说明,以下工作:
select "table_name"::text as "table"
from "information_schema"."tables"
where table_schema not like 'pg_%' and table_schema != 'information_schema'
Run Code Online (Sandbox Code Playgroud)
和以下作品:
create view works as
select "table_name"::text as "table"
from "information_schema"."tables"
where table_schema not like 'pg_%' and table_schema != 'information_schema'
Run Code Online (Sandbox Code Playgroud)
但以下失败:
create table fails as
select "table_name"::text as "table"
from "information_schema"."tables"
where table_schema not like 'pg_%' and table_schema != 'information_schema'
Run Code Online (Sandbox Code Playgroud)
和:
[SQL]create table fails as
select "table_name"::text as "table"
from "information_schema"."tables"
INFO: Function "has_table_privilege(oid,text)" not supported.
INFO: Function "has_table_privilege(oid,text)" not supported. …Run Code Online (Sandbox Code Playgroud) 我首先是一个perl编码器,但与许多人一样,也是用于客户端工作的PHP代码,尤其是Web应用程序.
我发现我用两种语言复制了很多我的项目,但是使用了不同的范例(例如用于处理cgi输入和会话数据)或函数.
我想要做的是开始以更像PHP的方式编写我的Perl代码,这样我a)保持一个范例b)可以更快地将脚本从一个移植到另一个
具体来说,我问人们是否可以建议你如何在perl中执行以下操作?
1)重现会话库的功能$_SESSION,$_GET例如通过结束会话库的param()方法CGI.pm?
2)类似于PHP的模板库我习惯于在PHP约定中混合我的代码和HTML.例如
<h1>HTML Code here</h1>
<?
print "Hello World\b";
?>
Run Code Online (Sandbox Code Playgroud)
任何人都可以建议哪个perl模板引擎(以及可能的配置)允许我进行类似的编码?
3)PHP函数库任何人都知道perl库可以重现很多php内置函数吗?