如何用html做手机百度的代码?(切记!不是电脑百度,而是手机百度,手机...
发布网友
发布时间:2022-04-23 19:32
我来回答
共2个回答
热心网友
时间:2022-04-20 10:27
看天使经验的人应该都是有一定编程基础的人,天使就不一一介绍怎么打开vs2008了。点击【文件】【新建文件】【常规】【HTML页面】【打开】
如图所示,新建了一个空白的html页面,拆分视图
设置页面body样式信息
【-webkit-touch-callout: none; -webkit-text-size-adjust: none;】
是防止用户复制和保存图片,只支持iphone、ipad、android
设置页面的宽度和高度
【.page-content{background:-webkit-linear-gradient(#2F5A53,#6CA199); top:352px; min-height:550px;_height:550px;width:640px; }】
【关键点】
新建一个div标签,样式使用page-content
在段落标记<p>里面输入文字信息,这里天使就不排版了,主要是教大家方法,然后保存网页
将网页上传到服务器目录下
输入网站域名,在电脑上访问可以看见如图所示效果,只有左侧部分
我们使用手机访问,得到如图所示效果,就不会像直接书写html代码一样文字很小
完整代码
【
<!DOCTYPE html><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0" /> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black" /> <meta name="format-detection" content="telephone=no" /> <title>不落泪的天使</title></head><body ><div style="margin: 0px; padding: 5px; border: 1px solid rgb(204, 204, 204); max-width: 100%; font-size: 16.363636016845703px; font-family: 宋体; line-height: 26.666667938232422px; background-color: rgb(248, 247, 245); word-wrap: break-word !important; box-sizing: border-box !important;"><span style="max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important; color: rgb(57, 57, 57); font-family: 微软雅黑; font-size: 14px;">不落泪的天使</span></div></body></html>
】
热心网友
时间:2022-04-20 11:45
360我就知道百度还不知道