简体   繁体   English

如何将 html 表单连接到 google 表格?

[英]how to connect html form to google sheets?

I have this css class the first one is to make my grid responsive, but @1000px I want it to scroll and don't wrap so that's why I make repeat 3, now the problem that some times I have 3 items, some times less我有这个 css 类,第一个是让我的网格响应,但是 @1000px 我希望它滚动并且不换行,所以这就是我重复 3 的原因,现在的问题是有时我有 3 个项目,有时更少

If I have less then 3 (2,1) I have a huge white space to scroll如果我有少于 3 (2,1) 我有一个巨大的空白空间滚动

So is there any way to have dynamic number with scroll and avoid having empty white space to scroll?那么有什么方法可以让动态数字滚动并避免空白滚动?

Your question is a bit vague, but I'll give it a shot.你的问题有点含糊,但我会试一试。 According to what you said I assume you have a set height.根据你所说的,我假设你有一个设定的高度。 Try instead of using height: Xpx;尝试而不是使用 height: Xpx; setting a maximum height.设置最大高度。 So when you have less than 3 elements to show, your scroll div will only size to the visible elements.因此,当您要显示的元素少于 3 个时,您的滚动 div 将仅根据可见元素调整大小。

Like this -> max-height: 300px;像这样 -> max-height: 300px;

Or要么

Use @media to set fixed sizes depending on the viewport size.使用 @media 根据视口大小设置固定大小。

@media (min-width: 761px) and (max-width:1079px) {
    .your_style {
      * your css*
    }
}

Firstly you need to give the stylesheet with a particular name.首先,您需要为样式表指定一个特定的名称。 The style is needed to the style for the code written.编写代码的样式需要样式。 After that you need to give the link of that page to the code page.(with using the anchor that and href you can can the style sheet to the coding page)之后,您需要将该页面的链接提供给代码页。(使用锚点和 href 可以将样式表链接到代码页)

For sure, the above shared style sheet guidelines would work, but would be just wanting to tell you about the affordable pay someone to do an assignment to work for you and to cater to your needs in the best way possible.可以肯定的是,上述共享样式表指南是可行的,但只是想告诉您支付得起某人为您完成任务并以最佳方式满足您的需求的费用。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM