- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个模态表单。在开发模式下,它看起来很棒,如下所示:
但是在 Heroku 的生产模式下它看起来如下:
我一直在一遍又一遍地查看并更改值(例如框的宽度等),但似乎没有任何效果。感谢任何帮助使生产模式下的表单与开发模式下的设计相匹配。
MODAL 的 HTML:
<div id="openModal" class="formModalContainer">
<div class="topBox">
<div class="closeModal"><a href="#">X</a></div>
<div class="clear"></div>
<div class="formLogo"><%= image_tag "ProvenWordLogoSmall.png", :alt=> "Samll Version of ProvenWord Logo" %></div>
</div>
<div class="bottomBox">
<h3>Free Quote Form</h3>
<div class="formContainer">
<form class="freeQuoteForm" autocomplete="off">
<fieldset>
<div class="formField">
<label class="formLabel" for="firstName">First Name</label>
<input type="text" id="firstName" class="input" tabindex="1" required>
</div> <!-- holds the first name field -->
<div class="formField rightField">
<label class="formLabel" for="LastName">Last Name</label>
<input type="text" id="LastName" class="input" tabindex="2" required>
</div> <!-- holds the last name field -->
<div class="formField wide">
<label class="formLabel" for="email">Email Address</label>
<input type="email" id="email" class="input" tabindex="3" required>
</div> <!-- holds the email field -->
<div class="formField wide sampleText">
<label class="formLabel sampleText" for="sampleText">Please include a 1000 word sample from your document.</label>
<textarea rows="12" cols="50" id="sampleText" tabindex="4" wrap="hard" class="input" required></textarea>
</div> <!-- holds the sample text field -->
<div class="formField">
<input type="checkbox" class="input checkbox" name="verifyResources" id="verifyResources" tabindex='5' value="verify" required>
<label class="formLabel checkbox" for="verifyResources">Check resource formatting?</label>
</div> <!-- holds the checkbox -->
<div class="formField rightField">
<select name="selectStyle" class="input selectStyle" tabindex="6" required>
<option selected disabled>Choose Editing Standard</option>
<option value="APA">APA</option>
<option value="EPA">EPA</option>
</select>
</div> <!-- holds the select box -->
<p class="disclaimer"><%=image_tag "lock.png", :alt=> 'icon of a padlock'%>We respect your privacy. Your information will be kept strictly confidential.</p>
<input class="btn-style" type="submit" value="Submit">
</fieldset>
</form>
</div><!-- formContainer -->
<div class="infoBox" id="sampleTextBox">
<div class="popupPointer pointerRight">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Molestias dignissimos sapiente non illum nesciunt! Quae quisquam, maiores autem. Tempora minima fuga molestias, error corrupti, nulla repellat delectus totam quae quod!</p>
<a href="javascript:void(0);" class="closeInfoBox">I understand</a>
</div><!-- popupPointer -->
</div><!-- infoBox -->
<div class="infoBox" id="verifyResourcesBox">
<div class="popupPointer pointerRight">
<p>CHeck this shit</p>
<a href="javascript:void(0);" class="closeInfoBox">I understand</a>
</div><!-- popupPointer -->
</div><!-- infoBox -->
</div><!-- Bottom Box -->
</div><!-- modalDialog -->
CSS:
.formModalContainer {
/* The fixed postion ensures that the modal will be there as the user scrolls down the page */
position: fixed;
font-family: "Sinkin Sans", Verdana, Helvetica, sans-serif;
/* setting these to 0 makes sure */
top: 0;
right: 0;
bottom: 0;
left: 0;
/* The backgrond here is dark and almost completly opaque */
background-image: url(asset-path('paper2.png'));
background-repeat: repeat;
/* This makes usre that the modal is above all other content */
z-index: 99998;
opacity:0;
visibility: hidden;
overflow: auto; /* Enable scroll if needed */
}
.formModalContainer.open {
animation: fadeIn 0.5s forwards;
/* This means that when the link is hovered over it becomes active */
pointer-events: auto;
}
.formModalContainer.closed {
animation: fadeOut 1s ease forwards;
/* This means that when the link is hovered over it becomes active */
/*pointer-events: none;*/
}
.topBox {
width: 640px;
margin: 0 auto;
height: 45px;
position: relative;
}
.closeModal {
opacity: 0;
visibility: hidden;
color: gray;
border: 1px solid gray;
border-top: none;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
width: 15px;
text-align: center;
padding: 2px 10px 2px 10px;
float: right;
transition: background-color 0.5s ease;
}
.closeModal:hover {
background-color: #92E7C9;
}
.closeModal a {
text-decoration: none;
}
.formLogo {
position: absolute;
top: -30px;
}
.bottomBox {
position: relative;
background: white;
margin: 30px auto;
width: 640px;
height: 680px;
border: 1px solid #9c9c9c;
}
.formModalContainer.open > .topBox > .formLogo {
animation: fadeIn 1.5s forwards, slideDown 0.5s 0.5s forwards;
}
.formModalContainer.open > .bottomBox {
animation: fadeIn 1.5s forwards, slideUpBottom 0.75s forwards;
}
.formModalContainer.closed > .topBox > .formLogo {
animation: slideUp 0.5s ease forwards;
}
.formModalContainer.closed > .bottomBox {
animation: slideDownBottom 0.75s forwards;
}
.formModalContainer.open > .topBox > .closeModal {
animation: fadeIn 2.5s forwards, bounceInUp 1s forwards;
}
.bottomBox h3 {
text-align: center;
padding: 20px 0;
}
.formContainer {
margin: 0 auto;
width: 530px;
height: 531px;
text-align: right;
border-bottom: 1px solid #9c9c9c;
box-sizing: border-box;
}
.formField {
font-family: "Sinkin Sans", Verdana, Helvetica, sans-serif;
font-size: 12px;
font-weight: 200;
width: 50%;
height: 60px;
border: 1px solid #9c9c9c;
border-bottom: none;
display: inline-block;
vertical-align: top;
box-sizing: border-box;
position: relative;
animation: fadeColorWhite 0.5s 0s ease 1 forwards;
}
.formField.wide {
width: 100%;
}
.rightField {
float: right;
border-left: none;
}
.input {
font-family: "Sinkin Sans", Verdana, Helvetica, sans-serif;
font-size: 12px;
font-weight: 300;
border: none;
display: inline-block;
height: 60px;
padding: 0px;
background: transparent;
width: 100%;
text-indent: 10px;
outline:none;
margin: 0;
}
.formLabel {
position: absolute;
left: 10px;
bottom: 2px;
color: #bfbfbf;
-webkit-transform-origin: center left;
}
.formField.selected {
animation: fadeColorBlue 0.5s forwards;
}
.formField:hover {
animation: fadeColorBlue 0.5s forwards;
}
.formLabel.selected {
animation: colorScaleMove 0.75s forwards;
}
.sampleText {
height:350px;
}
#sampleText {
height: 100%;
overflow: auto;
resize: none;
padding-top: 5px;
}
.formLabel.sampleText {
top: 5px;
height: 20px;
}
.formLabel.sampleText.selected {
animation: fadeOut 0.5s forwards;
}
.input.checkbox {
margin-left: 7px;
vertical-align: middle;
}
.formLabel.checkbox {
top: 20px;
left: 30px;
transition: color 1s;
}
.formLabel.checkbox.selected {
animation: none;
color: black;
}
p.disclaimer {
padding: 10px 0 15px 0;
font-size: 10px;
font-weight: 300;
text-align: center;
}
p img {
display: inline-block;
padding-right: 10px;
vertical-align: text-bottom;
}
.btn-style{
border : solid 0px #e6e6e6;
border-radius : 2px;
moz-border-radius : 2px;
-webkit-box-shadow : 0px 0px 2px rgba(0,0,0,1.0);
-moz-box-shadow : 0px 0px 2px rgba(0,0,0,1.0);
box-shadow : 0px 0px 2px rgba(0,0,0,1.0);
font-size : 15px;
color : #000000;
padding : 5px 19px;
background-color : #92E7C9;
transition: background-color 0.5s ease;
}
input.btn-style:hover {
background-color: #A5FDDE;
}
legend {
padding: 0;
display: table;
}
fieldset {
border: 0;
padding: 0.01em 0 0 0;
margin: 0;
min-width: 0;
}
body:not(:-moz-handler-blocked) fieldset {
display: table-cell;
}
最佳答案
我无法确切说明发生这种情况的原因,但我可以提供有关我如何修复它的最新信息。我升级了我的 Chrome 版本。我还在 Safari 和 Firefox 中测试了我的网站。有一些小故障需要修复,这对于不同的浏览器来说是正常的,但表单布局是正确的。
关于css - 为什么这些表单字段在生产中没有排列,但在开发中是完美的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36880144/
我需要一些说明。我可以直接写入 /dev/port 以直接访问并行端口并且它工作正常(我可以打开插入端口连接器的 LED)。但是,我想我可以用 /dev/mem 做同样的事情? (http://tld
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我使用 Visual C++ 和 Win32 API 学习了 Windows 编程。如今,似乎大多数应用程序都是使用 C# 在 .NET 中开发的。我知道大多数时候 native 代码和托管代码之间没
请耐心等待。我正在制作一个 java 控制台,类似于此处找到的 DragonConsole https://code.google.com/p/dragonconsole/ 。一切都按计划进行,但我想
关闭。这个问题需要更多 focused .它目前不接受答案。 想要改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭5年前。 Improve this que
Django 的开发服务器表现得很奇怪。访问它的浏览器在加载时卡住,任何退出它的尝试都不起作用。当我点击 control c看似相当,但实际上仍在运行。让它退出的唯一方法是重新启动我的电脑,这很令人沮
我正在使用 Flash Develop,并且创建了一个 ActionScript 3.0 项目。它启动并读取一个 xml 文件,其中包含图像的 url。我已将 url 保留在与 swf 相同的文件夹中
是否可以根据其 website 上提供的规范开发 AUTOSAR BSW 堆栈(例如用于 CAN 通信)?不购买任何昂贵的供应商工具?可以遵循哪些步骤?我被要求探索这种可能性。 最佳答案 是和否。工具
有人知道如何用音频文件的内容覆盖 iPhone 麦克风吗? 想象一个场景,您正在通话,并且想要播放一些简短的音频让其他人听到。 因此,有必要将麦克风(硬件)置于保持状态,并使用委托(delegate)
我遇到了这个问题,我的应用程序出现 EXC_BAD_ACCESS 错误并卡住/停止。我使用模拟器的“向左旋转”和“向右旋转”选项来模拟方向变化行为。导致此错误的可能原因有哪些?由于我没有获得有关错误的
我有超过 1 台 Mac,我想在所有这些 Mac 上进行开发。我知道我需要在每台机器上同步我的手机,但这是我遇到的最小的问题。看起来我无法在手机上运行应用程序,除了在其中之一上开发的应用程序。 是否有
在手机上测试时,我的应用程序在特定点崩溃。控制台显示此消息 Tue Jan 27 15:47:14 unknown SpringBoard[22] : Application com.myprof.
我有一个案例,我从服务器获取信息。我的应用程序有一个选项卡栏和导航按钮。我希望应用程序显示进度指示器并禁用所有其他控件,以便用户在从服务器提取数据时无法跳转。我怎样才能实现这个目标? 我想到的一种方法
有时,当我尝试“构建”/编译下载的源代码时,我会收到以下警告: ld: warning: directory '/Volumes/Skiiing2/CD/ViewBased/Unknown Path/
我无法在 Apple 文档中找到关于开发和分发配置之间差异的明确解释。我目前正在使用开发配置在我的 iPhone 上进行开发和测试。我打算将该应用程序分发到我的 Beta 测试中,我想知道: 我需要使
我在使用 SharePoint 时遇到的最大挑战之一是它不能很好地适应典型的项目环境,其中至少包含开发和生产环境。我遇到的最多的问题是内容和列表是如此紧密地耦合在一起,以至于如果不在生产环境中执行内容
我失败了fist step让 Eclipse(对我来说是全新的)为 ARM 开发做好准备。 我在 Windows 10 中安装了 Eclipse。我想我应该安装 xpm,但我不知道在哪里输入此命令:
首先,我告诉你-我是编码新手 我正在使用vs代码来学习c++,它不会产生像dev c++或codeblocks这样的调试器。我看了一些视频,其中我们必须编辑json文件,这对于初学者来说非常复杂。有人
我失败了fist step让 Eclipse(对我来说是全新的)为 ARM 开发做好准备。 我在 Windows 10 中安装了 Eclipse。我想我应该安装 xpm,但我不知道在哪里输入此命令:
我开发了一个 Ionic 应用程序(iOS 和 Android 的混合)。我有 Xcode 8.3.3 并购买了一年的 Apple Developer Program 订阅。 我不想测试我的应用并将其
我是一名优秀的程序员,十分优秀!