作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Asp.net 页面我的代码是
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="fisrt_page.aspx.cs" Inherits="my_project.fisrt_page" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<link rel="stylesheet" type="text/css" href="../css/login_style.css" />
<title></title>
</head>
<body style="background: url(../images/demo/backgrounds/background_login.jpg);">
<form id="form1" runat="server" style="height: 100%; width: 100%;">
<......................my elements.....................>
</form>
</body>
</html>
我的设计如下图所示
但我希望我的设计填满所有页面并将空间隐藏为我设计中的图像对不起,我的英语不好但请帮助我
我的CSS是
html, head, body, form {
height: 100%;
width: 100%;
}
.inputbox {
background: white;
border: 1px solid #DDD;
border-radius: 5px;
box-shadow: 0 0 5px #DDD inset;
color: #666;
outline: none;
height: 25px;
width: 275px;
font-size: 20px;
}
最佳答案
根据我在您的帖子中收集到的信息,您正在尝试弹出窗口,并用纯色或透明色覆盖背景。为此,您可以执行以下操作:
纯色:
.overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: black;
}
透明色:
.overlay{
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5); /*dim the background*/
}
要激活它,您可以更改使用 jQuery 来显示叠加层:
<div class="overlay" id="overlay"></div>
<script>
$('#overlay').show();
</script>
当然,如果您通过单击按钮或其他一些操作来完成,那将是最好的。
我希望这能引导您朝着正确的方向前进。
关于javascript - 让 mydesign 填充 asp.net 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27572267/
我目前正在尝试为多个线程之间的通信创建一个良好且有效的 Qt 设计。我有一个首选项窗口,它会在单击“应用”时发出不同的信号。例如,一个用于创建 SQL 连接,一个用于更改其他内容。我想更改不同类的后台
我有一个 Asp.net 页面我的代码是 我的设计如下图所示 https://plus.google.com/u/0/104984108592274
我是一名优秀的程序员,十分优秀!