- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的网站有一个问题,由于尺寸缩放,它无法在手机上正确显示。我的大部分 svg 大小和字体都到处都是。
我在我的 css 中添加了断点,它可以解决我的大部分主要错误。大多数手机的所有内容都已调整大小并已修复。
<body>
<!--This is the header {logo , menu}-->
<div id="container">
<div id="header">
<div class="logo">
<p>
A n Z
</p>
</div>
<ul class="menu">
<a href="default.html">
<li>Home</li>
</a>
<a class="links" href="Contact.html">
<li>Contact</li>
</a>
<a class="links" href="Projects.html">
<li>Projects</li>
</a>
</ul>
</div>
<div class="content">
<hr>
<h1>
Are you trying to build a professional website ?
</h1>
<P>
Hello, I am a web designer / front end developer. Bringing your vision alive is pivotal to me and that is what sets me apart. Let's create a professional yet astonishing designs for our website that shows your vision.
</P>
<hr>
<h2>My Services</h2>
<hr class="titleUnderline">
<div class="services , separation">
<div class="leftBox , serviceBox">
<img class="serviceLogo" src="web-design.svg">
<h3> Web Design <br/> <span class="subTitle">UI Focused</span></h3>
<p>
Designing a website must be specific to its activity. This is what I do, designing a website professionally to deliver its purpose to the users of the website. User-focused website should be the primary goal of any website.
</p>
</div>
<div class="rightBox , serviceBox">
<img class="serviceLogo" src="responsive-design-symbol.svg">
<h3> Web Development <br/> <span class="subTitle">Responsive and Fast</span></h4>
<p>
Every Website must have to goals to achieve . First it must be resposive which means for it to work on all devices . Second it has to to load as fast as possible to guarantee a very good user experiece.
</p>
</div>
</div>
<div class="services , separation">
<div class="leftBox , serviceBox">
<img class="serviceLogo" src="G designing.svg">
<h3>Logo Designing <br/> <span class="subTitle">Iconic Styles</span></h3>
<p>
A website's logo describes its product, targets the audience and industry. It commonly outlines fundamental information about the business, the desired design, the project timing, and the budget.
</div>
<div class="rightBox , serviceBox">
<img class="serviceLogo" src="htmlcss.svg">
<h3>Front-End Development <br/> <span class="subTitle">HTML / CSS</span></h3>
<p>
Creating a strong foundation for a website means getting the HTML and CSS architecture right. If you've got a design I can create the front-end code for it.
</p>
</div>
</div>
</div>
<br/>
<hr>
<div id="footer">
<div class="copyright">
<p>
©Copyright 2019 AnZ <sup>®</sup>
</p>
<a href="https://www.instagram.com/abuzied365/?hl=en" target="_blank">
<img src="instagram.svg"></a>
<a href="https://www.facebook.com/AbuziedAbdalla" target="_blank">
<img src="facebook.svg">
</a>
<a href="https://twitter.com/AbuzeidAbdalla" target="_blank">
<img src="twitter.svg">
</a>
</div>
</div>
</div>
</div>
</body>
body {
width: 100%;
margin: auto;
color: #7D7B7B;
}
#header {
font-family: 'Yanone Kaffeesatz', sans-serif;
height: 15%;
position: relative;
top: 10px;
text-align: center;
}
h2,
h3,
h4,
h5,
h5 {
font-family: 'Yanone Kaffeesatz', sans-serif;
}
h1 {
font-family: 'Yanone Kaffeesatz', sans-serif;
font-size: 45px;
}
p {
font-family: 'Poiret One', cursive;
font-size: 20px;
font-weight: 650;
}
a:link {
text-decoration: none;
}
a:active {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
.logo p {
font-family: 'Sacramento', cursive;
font-size: 50px;
outline: 0;
text-rendering: optimizeLegibility;
color: #7D7B7B;
}
ul {
list-style-type: none;
}
#container {
width: 80%;
margin: auto;
}
hr {
border: 1px solid #7D7B7B;
margin-top: 15px;
margin-bottom: 15px;
}
.menu li {
display: inline;
font-size: 20px;
}
.links {
margin-left: 7%;
}
.menu {
padding: 4px;
}
.menu a {
color: #7D7B7B;
}
.serviceBox {
width: 30%;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
margin-right: 10%;
margin-left: 5%;
text-align: center;
border-radius: 15px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
-ms-border-radius: 15px;
-o-border-radius: 15px;
}
/* .rightBox {
width: 30%;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
margin-left: 10%;
text-align: center;
border-radius: 15px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
-ms-border-radius: 15px;
-o-border-radius: 15px;
}*/
h2 {
font-size: 35px;
}
h3 {
font-size: 30px;
}
.services {
width: 100%;
display: flex;
flex-flow: row;
}
.services p,
h3 {
padding: 5px;
line-height: 35px;
}
.subTitle {
font-weight: 100;
font-size: 25px;
}
.titleUnderline {
width: 8%;
float: left;
margin-bottom: 25px;
}
.serviceLogo {
width: 150px;
height: 200px;
}
.separation {
margin-top: 100px;
}
.copyright {
text-align: center;
}
.copyright img {
width: 40px;
height: 40px;
margin-bottom: 50px;
}
.contactMe img {
width: 50px;
height: 50px;
float: left;
margin-right: 30px;
}
.underline {
width: 11%;
float: left;
}
.title {
margin-bottom: 100px;
}
.number,
.myEmail {
font-family: 'Gruppo', cursive;
font-weight: 600;
font-size: 26px;
}
.comingSoon {
font-size: 60px;
text-align: center;
}
@media only screen and (min-width: 320px) and (max-width: 812px) {
.serviceLogo {
width: 75px;
height: 100px;
}
h3 {
font-size: 15px;
}
.subTitle {
font-weight: 100;
font-size: 15px;
}
p {
font-size: 12px;
}
.titleUnderline {
width: 120px;
float: left;
margin-bottom: 25px;
}
/*.rightBox,
.leftBox {
display: none;
}*/
.serviceBox {
width: 100%;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
margin-right: 10%;
margin-left: 5%;
text-align: center;
border-radius: 15px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
-ms-border-radius: 15px;
-o-border-radius: 15px;
}
.number,
.myEmail {
font-family: 'Gruppo', cursive;
font-weight: 600;
font-size: 15px;
}
.contactLogo {
width: 50px;
height: 80px;
}
.underline {
width: 165px;
float: left;
}
}
很抱歉,我的代码并不是最整洁的,但无论如何,所有浏览器都经过调试并且工作正常,除了我手机上的谷歌浏览器,没有一个错误得到解决。我将不胜感激任何形式的建议或帮助。谢谢
最佳答案
您应该在此处添加代码并调整宽度、字体大小等值...
CSS
@media only screen and max-width(767px){
**********
}
关于jquery - 网站在移动设备上没有响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57847251/
我有这个网站,这个特定页面是安全的,但是当它回发时,它回发到一个不安全的页面。如何解决? 我正在使用 ASP.NET 向导。我有这个页面 - checkout.aspx,页面包含这个控件 checko
我有 2 个 azure 网站 - 两个独立的项目 我现在有 2 个网址: myazurewebsite.azurewebsites.net myazureblog.azurewebsites.net
我有 2 个 azure 网站 - 两个独立的项目 我现在有 2 个网址: myazurewebsite.azurewebsites.net myazureblog.azurewebsites.net
环境: 旧网站: React 托管在 Heroku URL( http://sameurl.com ) 新网站: Java 托管在 Heroku URL ( http://sameurl.com )
我已在 Windows Azure 上注册了一个测试帐户来对其进行测试。我构建了一个 Hello world ASP.NET Web 应用程序 + 数据库只是为了测试。 我安装了 Visual Stu
我有一个可以收集和显示各种测量值的产品(不会详细介绍)。正如人们所期望的那样,显示部分是一个数据库+建立在其之上的网站(使用 Symfony)。 但是,我们可能还会创建一个 API 来向第三方公开数据
这个问题在这里已经有了答案: Software keyboard resizes background image on Android (16 个答案) 关闭 8 年前。 我有一个类似的问题:So
这个问题似乎很常见,但我真的无法根据现有答案解决问题。 我有一个简单的 maven 项目,没有任何复杂的部署配置等,并且想在点击“mvn site”时生成一个 Maven CheckStyle 报告。
有没有人看过有关何时进行横向扩展与纵向扩展的最佳选择的任何分析或信息。什么时候一个比另一个更有意义。 目前,在标准模式和基本模式下,2 个小型实例的费用与 1 个中型实例的费用相同。 拥有 2 个小型
有没有办法找到 azure 网站何时停止? (我通过门户网站停止了网站,但我不记得是什么时候......) 我正在寻找一些日志,但没有找到任何有用的内容。 谢谢。 最佳答案 您拥有的最接近的是 azu
我目前在 Azure VM 的 IIS 中拥有一个网站。我已将该站点复制到 2 个可用区域中的 2 个虚拟机上。 这可以保护网站免遭停机。 我需要为高负载时刻实现一些可扩展性。这似乎就是创建音阶集的目
我有一个托管在 Azure 上的网站 ( http://mike-ward.azurewebsites.net/ )。我从 Azure 门户设置了一个指向(引用?)我的网站的 Azure CDN。根据
我有一个 Azure 网站(不是 Web 角色),有 2 个槽:生产和暂存。 我只想为生产插槽启用 CDN,而不是为登台启用,问题是我找不到识别主机插槽的方法。 RoleEnvironment 不可用
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提出有关书籍、工具、软件库等建议的问题。您可以编辑问题,以便可以用事实和引用来回答它。 4年前关
我们正在考虑将一些网站从 Azure 云服务迁移到 Azure 网站(事情似乎就是这样进行的)。显然,我们被明确告知云服务不会保留文件系统状态,因为它们会在机器故障时重新部署。 我假设网站是基于 Bl
我有一个 Azure 网站,需要使用在 VM 上运行的 Elasticsearch 服务。 虽然我需要能够锁定对 Elasticsearch 的访问,以便只有 Azure 网站可以访问它,但我似乎无法
我有一个 azure 网站,位于 yis3.azurewebsites.net - 我已将其提升为“共享”网站,以便我可以使用自定义域。我拥有从 123-reg.co.uk 购买的域名 yorkshi
我正在使用 abcPDF 动态创建 PDF。 我想保存这些 PDF,以便客户随时检索。最简单的方法(也是我现在在当前服务器上所做的方法)是将完成的 PDF 保存到文件系统。 看来我一直坚持使用 blo
我们正在尝试了解 Windows Azure 管理 API 为 Azure 网站(而非 Webroles)返回的监控数据的复杂性 例如,下图描述了为 CPUTime 检索的数据点。它似乎表明,在晚上
看起来真的很愚蠢,因为我找不到它: 门户网站似乎不太直观,我如何为一个“网站”付费并在其中运行最多 500 个网站?我想当我通过单击左下角的加号添加“网站”时,我添加了整个虚拟机而不是子站点。如何仅添
我是一名优秀的程序员,十分优秀!