gpt4 book ai didi

javascript - 无序的网页样式

转载 作者:行者123 更新时间:2023-11-28 06:59:33 27 4
gpt4 key购买 nike

我已经尝试使用此 html 页面格式化很长时间了。我想以一种漂亮的方式在屏幕中央看到这些内容。感谢您的帮助。

http://jsfiddle.net/bce9LfLL/我的代码是CSS

* {
margin:0;
padding:0;
font-family: tahoma;
}
body {
padding: 30px;
}
#fileid{
width:10%;
height:15%;
}
div {
width: 400px;
height: 25px;
background-color: white;
box-shadow: 1px 2px 3px #ededed;
position:relative;
border: 1px solid #d8d8d8;
}
input[type='file'] {
width:400px;
height:25px;
opacity:0
}
#val {
width: 400px;
height:25px;
position: absolute;
top: 0;
left: 0;
font-size:13px;
line-height: 25px;
text-indent: 10px;
pointer-events: none;
}
#button {
cursor: pointer;
display: block;
width: 90px;
background-color: purple;
height:25px;
color: white;
position: absolute;
right:0;
top: 0;
font-size: 11px;
line-height:25px;
text-align: center;
-webkit-transition: 500ms all;
-moz-transition: 500ms all;
transition: 500ms all;
}

#button:hover {
background-color: blue;
}


body {
background-color: linen;
}

div{
color: maroon;
margin-left: 40px;
font-size:100%;
}
#sid{
color: maroon;
margin-left: 40px;
font-size:100%;
}

html

<div align="center">
<b>Model</b><select id="sid">
<option >Average</option>
<option>Sum</option>
<option>Highest</option>
</select><br>
<div id="fileip">
<input type='file'> <span id='val'></span>
<span id='button'>Select File</span>
</input>
</div>
<input type="submit" value="run"><br><br>
<input type="submit" value="Display"><br>
</div>

和javascript

$('#button').click(function () {
$("input[type='file']").trigger('click');
})

$("input[type='file']").change(function () {
$('#val').text(this.value.replace(/C:\\fakepath\\/i, ''))
})

页面应该是这样的 enter image description here

最佳答案

有两个选项可以让我的头顶居中。首先,固定宽度并设置 margin:0 auto;在您希望居中的元素上。二是放position:relative;左:计算(50% - YOURELEMENTWIDTH);

关于javascript - 无序的网页样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33317268/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com