- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在填充历史数据后如何更改表单的背景。仅在 Mozilla 中一切正常,输入背景在填充或(自动填充)历史数据后变为黄色,而在 Chrome 中则变为蓝色。我希望在每种情况下都将其设置为白色。以下是已放置表单的 index.php 中的代码:
<?php
session_start();
if(isset($_SESSION['zalogowany'])&&$_SESSION['zalogowany']==true)
{
header('Location:panel.php');
exit();
}
?>
<!Doctype HTML>
<html lang="pl">
<head>
<link href="style.css" rel="stylesheet">
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<title>Bukowski-panel sprzedaży</title>
</head>
<body>
<div class="flex-box">
<div class="form-container">
<form action="zaloguj.php" method="post">
<input type="text" name="login" placeholder="login" onfocus="this.placeholder=''" onblur="this.placeholder='login'">
<input type="password" name="haslo" placeholder="haslo" onfocus="this.placeholder=''" onblur="this.placeholder='haslo'">
<input id="submit "type="submit" value="zaloguj się">
</form>
<div class="logo">Bukowski</div>
<div class="blad">
<?php
if(isset($_SESSION['blad']))
echo $_SESSION['blad'];
?>
</div>
</div>
</div>
</body>
</html>
这里是 CSS 文件中的代码,其中表单已设置样式:
body{
background-image: url("img/black_twill.png");
color: white;
font-size: 20px;
}
@font-face
{
src: url(mistral.ttf);
font-family: mistral;
}
.form-container
{
background-color: white;
width: 350px;
text-align: center;
padding-top: 35px;
-webkit-box-shadow: inset 0px 0px 5px 11px rgba(0,0,0,0.98);
-moz-box-shadow: inset 0px 0px 5px 11px rgba(0,0,0,0.98);
box-shadow: inset 0px 0px 5px 11px rgba(0,0,0,0.98);
}
.flex-box{
display: flex;
justify-content: center;
min-height: calc(100vh - 20px);
align-items: center;
}
.blad{
min-height: 30px;
padding-bottom:5px;
margin:0px;
}
.logo{
color: black;
min-height: 30px;
padding: 10px 0px 0px 0px;
font-family: mistral;
font-size: 25px;
}
input{
width: 200px;
border: 1px solid black;
}
input[type=text],
input[type=password]
{
margin: 8px;
}
input[type=submit]{
background-color: black;
color: white;
cursor: pointer;
border: 2px solid black;
padding: 3px;
font-size: 12px;
margin: 15px;
}
input[type=submit]:hover
{
background-color:#222222;
}
最佳答案
试试这个:
input:-webkit-autofill {
-webkit-box-shadow:0 0 0 50px white inset; /* Change the color to your own
background color */
-webkit-text-fill-color: #333;
}
input:-webkit-autofill:focus {
-webkit-box-shadow: 0 0 0 50px white inset;/*your box-shadow*/
-webkit-text-fill-color: #333;
}
body {
background-image: url("img/black_twill.png");
color: white;
font-size: 20px;
}
@font-face {
src: url(mistral.ttf);
font-family: mistral;
}
.form-container {
background-color: white;
width: 350px;
text-align: center;
padding-top: 35px;
-webkit-box-shadow: inset 0px 0px 5px 11px rgba(0, 0, 0, 0.98);
-moz-box-shadow: inset 0px 0px 5px 11px rgba(0, 0, 0, 0.98);
box-shadow: inset 0px 0px 5px 11px rgba(0, 0, 0, 0.98);
}
.flex-box {
display: flex;
justify-content: center;
min-height: calc(100vh - 20px);
align-items: center;
}
.blad {
min-height: 30px;
padding-bottom: 5px;
margin: 0px;
}
.logo {
color: black;
min-height: 30px;
padding: 10px 0px 0px 0px;
font-family: mistral;
font-size: 25px;
}
input {
width: 200px;
border: 1px solid black;
}
input[type=text],
input[type=password] {
margin: 8px;
}
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 50px white inset;
/* Change the color to your own background color */
-webkit-text-fill-color: #333;
}
input:-webkit-autofill:focus {
-webkit-box-shadow: 0 0 0 50px white inset;
/*your box-shadow*/
-webkit-text-fill-color: #333;
}
input[type=submit] {
background-color: black;
color: white;
cursor: pointer;
border: 2px solid black;
padding: 3px;
font-size: 12px;
margin: 15px;
}
input[type=submit]:hover {
background-color: #222222;
}
<html lang="pl">
<head>
<link href="style.css" rel="stylesheet">
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Bukowski-panel sprzedaży</title>
</head>
<body>
<div class="flex-box">
<div class="form-container">
<form action="zaloguj.php" method="post">
<input type="text" name="login" placeholder="login" onfocus="this.placeholder=''" onblur="this.placeholder='login'">
<input type="password" name="haslo" placeholder="haslo" onfocus="this.placeholder=''" onblur="this.placeholder='haslo'">
<input id="submit " type="submit" value="zaloguj się">
</form>
<div class="logo">Bukowski</div>
<div class="blad">
<?php
if(isset($_SESSION['blad']))
echo $_SESSION['blad'];
?>
</div>
</div>
</div>
</body>
</html>
关于java - 表单填充历史数据后如何更改表单背景?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61452790/
我正在尝试实现此处建议的 redis 解决方案:http://www.slideshare.net/cacois/cois-palkostrata2013 : 这是目前为止我发现的最好的。 我有以下数
只是想知道您是否对关注有意见。 想象一下,我有一个简单的应用程序可以为客户存储发票。 简化发票表是: ID int, NUMBER varchar(20) CustomerID INT 客户数据是:
我正在尝试将 pandas 模块应用于我的代码,以便重新组织从 IB TWS 服务器收到的消息。 代码是 from ibapi.client import EClient from ibapi.wra
Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。 想改善这个问题吗?更新问题,以便将其作为on-topic
这个查询对我有用 select * from yahoo.finance.xchange where pair in ("EURUSD","GBPUSD") 可以在以下链接中看到: https://d
我正在尝试学习如何使用 Python、requests 和 BeautifulSoup 从 Coinmarketcap.com 网络抓取 BTC 历史数据。 我想解析以下内容: 1)日期 2)关闭 3
我有一个包含两列(Column_A 和 Column_B)的模型 (Model_A) 我的模型中有以下方法,两个基于 column_A 生成 column_B 的值 Class Model_A < A
让我们以关系数据库为例,例如MySQL。为了简单起见,我将专注于重要的事情:有一个包含订单的表,其中包含 order_id(主键)order_date 和外键 fk_supplier 等字段,引用表
我正在做一个快速的概念验证,以了解从 Google Analytics(分析)中提取历史数据以进一步用于离线数据拼接以生成数据及其分析的整体 View 的过程。我没有找到任何详细的在线文档来了解优缺点
我是一名优秀的程序员,十分优秀!