博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
第八十八节,html5+css3pc端固定布局,搜索区,插入大图,搜索框
阅读量:5831 次
发布时间:2019-06-18

本文共 1370 字,大约阅读时间需要 4 分钟。

html5+css3pc端固定布局,搜索区,插入大图,搜索框

 

设置一个div作为搜索区域

1.宽度为百分之百

2.最小宽度为1263,因为要考虑到手机,等小屏幕缩小后宽度会自适应,导致破坏布局,将最小宽度设置为1263后,当缩小低于1263时,就是1263的宽度不破坏布局

 

插入大图

将图片作为背景插入div区域,背景显示一次,背景居中显示

 

搜索框

在插入背景的div做搜索框,用定位方式居中

 

完成

 

html代码

搜索

css代码

/*搜索区域*/.sou-suo{
width: 100%; min-width:1263px; height: 600px; background: url("../img/search.jpg") no-repeat center; position: relative;}.sou-suo h2{
display: none;}.sou-suo .sou-suo2{
width: 600px; height: 60px; background-color: #000000; position: absolute; top: 50%; left: 50%; margin-left: -300px; margin-top: -30px; border-radius: 8px; opacity: 0.7;}.sou-suo .sou-suo3{
width: 600px; height: 60px; position: absolute; top: 50%; left: 50%; margin-left: -300px; margin-top: -30px; border-radius: 8px;}.sou-suo .sou-suo3 input{
width: 500px; height: 50px; border: none; border-radius: 8px; margin: 5px 0 5px 5px; padding: 0 5px 0 5px; font-size: 22px; line-height: 50px;}.sou-suo .sou-suo3 button{
width: 70px; height: 50px; border: none; border-radius: 8px; float: right; margin: 5px 8px 5px 0; font-size: 22px; line-height: 50px; cursor: pointer;}.sou-suo .sou-suo3 button:hover{
background-color: #C6C6C6;}

 

转载地址:http://vsedx.baihongyu.com/

你可能感兴趣的文章
对象与字符串相互转换
查看>>
[NOIp2017提高组]小凯的疑惑
查看>>
《C程序设计语言》练习1-5
查看>>
$\frac{dy}{dx}$ 是什么意思?
查看>>
Go开发之路(目录)
查看>>
RHEL6.5安装成功ORACLE11GR2之后,编写PROC程序出错解决方法
查看>>
(50)与magento集成
查看>>
Ubuntu设置python3为默认版本
查看>>
JsonCpp 的使用
查看>>
问题账户需求分析
查看>>
JavaSE-代码块
查看>>
爬取所有校园新闻
查看>>
32、SpringBoot-整合Dubbo
查看>>
python面向对象基础
查看>>
HDU 2044 一只小蜜蜂(递归)
查看>>
docker 下 安装rancher 笔记
查看>>
spring两大核心对象IOC和AOP(新手理解)
查看>>
数据分析相关
查看>>
Python LDAP中的时间戳转换为Linux下时间
查看>>
微信小程序蓝牙连接小票打印机
查看>>