gameking2oo8 发表于 2021-12-16 23:51:57

网页布局问题

本帖最后由 gameking2oo8 于 2021-12-16 23:56 编辑



请问如何让这些按钮看上去更舒服,怎么布局?

最终是用手机游览器预览上面的内容。

Gacy 发表于 2021-12-17 15:34:10

改颜色?换图形样式?

迷糊不迷糊芜湖 发表于 2021-12-31 10:47:32

宽高度自适应一下?然后使用Position定位

王尧 发表于 2022-1-1 19:05:54

你把css学完就知道了

COCCHome 发表于 2022-1-4 10:04:39

用css,我给你一篇代码,或与你能用到,我也是萌新,看不懂,只能你自己琢磨了。
<!DOCTYPE html>
<html>
<head>

   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>COCC Home</title>

    <style>
      body {
            margin: 0;
            padding: 0;
      }

      
      div {
            position: absolute;
            margin: 0 auto;
            left: 653px;
            top: 70px;
      }
      
      input {
            position: absolute;
            outline: none;
            font-size: 20px;
            border: 2px solid #4e6ef2;
            border-radius:10px;
            width: 185%;
            height: 40px;
            left: -75%;
            top: 100%;
      }
      
      button {
            position: absolute;
            outline: none;
            font-size: 15px;   
            border-radius:10px;
            color: white;
            background: #4e6ef2;
            width: 25%;
            height: 44px;
            left: 113%;
            top: 100%;
      }
      
      button:hover {
            background: #2D5EE3;
      }
    </style>
    <script>
      window.onload = function (){
            var oBtn = document.getElementsByTagName("button");
            var oTxt = document.getElementsByTagName("input");
            
            function click() {
                if (oTxt.value == "") {
                  location.reload();
                } else {
                  window.open("https://www.baidu.com/s?wd=" + oTxt.value);
                }
            }
            
            oBtn.onclick = click;
            oTxt.onkeydown = function(e) {
                if (!e) e = window.event;
                if (e.keyCode == 13) {
                  click();
                }
            }
      }
    </script>
</head>
<body>
<div>

        <h1 style="font-size:350%">
                COCC Home</h1>
        <input type="text">
      <button>Go</button>
</div>
<style tpye="text/css">
.代码{
        position: absolute;
        width:268px;
        height:300px;
        }
.代码 p{
        position: absolute;
        bottom: 0;
        width:140%;
        text-align:center;   
   }
</style>
        <div class="代码">
                <p>&copy;COCC Home-2021(Mingwei Wei)</p>
</div>
</body>
</html>

害羞的新手 发表于 2022-1-25 17:51:52

弹性盒子整试试?要改动样式格式用css改呗

白夜各半 发表于 2022-3-24 15:26:07

emmm,颜色,边框,大小,

艺术生 发表于 2022-5-25 21:08:42

# 建议看书学习CSS 让按钮变得好看
一般都是增加颜色,box-shadow, border-radius使得按钮有立体感
然后增加点击后 改变CSS效果,让按钮看起来被点击了
现在流行扁平化设计
总结: 看书学CSS,基础打牢

尹兔 发表于 2022-5-26 11:53:49

flex

melon@Lzl 发表于 2022-6-2 16:22:25

你想怎么舒服
页: [1]
查看完整版本: 网页布局问题