Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

logo 首字母为小写 j 时会被裁切,大写正常 #82

Closed
Jerry-FaGe opened this issue Feb 11, 2023 · 3 comments
Closed

logo 首字母为小写 j 时会被裁切,大写正常 #82

Jerry-FaGe opened this issue Feb 11, 2023 · 3 comments
Labels
bug 这有一只虫子

Comments

@Jerry-FaGe
Copy link

我的网站是以小写字母 j 打头的,调试的时候发现前面一点会被裁切,如图:

首字母小j

换成大写 J 就没有问题

首字母大J

但是换成大写的会让后面长出引言框一大截,看着还是挺不舒服的

域名过长

不知道如果域名比较长的情况下有什么方法可以调优这个样式

@imsyy imsyy added the bug 这有一只虫子 label Feb 12, 2023
@imsyy
Copy link
Owner

imsyy commented Feb 12, 2023

正在想办法解决这个问题 😂

@first19326
Copy link
Contributor

@Jerry-FaGe 这个问题,我可以给你个解决方案,首页的话应该算完美,但是其他页面不是特别完美,首页这个地方的容器有个 margin-left 的样式,你调整为 padding-left 就可以解决这个问题。归根究底这个问题是由于字体样式造成的,因为这个字体会超出容器限制。

@Jerry-FaGe
Copy link
Author

@Jerry-FaGe 这个问题,我可以给你个解决方案,首页的话应该算完美,但是其他页面不是特别完美,首页这个地方的容器有个 margin-left 的样式,你调整为 padding-left 就可以解决这个问题。归根究底这个问题是由于字体样式造成的,因为这个字体会超出容器限制。

感谢你提供的思路,我调整出了适合我的样式,以下放出我的调整以供参考:

.name {
  width: 100%;
  height: 142px;
- margin-left: 12px;
+ // margin-left: 12px;
  transform: translateY(-15px);
  font-family: "Pacifico-Regular";

  .bg {
    font-size: 5rem;
+   padding-left: 1.2rem;
  }
.bg {
  font-size: 5rem;
+ padding-left: 1.2rem;
}

只测试了小写字母 j 的表现,其他字母因为有字体压缩就懒得测了(
本人不咋懂前端,如果这样写兼容性会更好的话希望 @imsyy 可以采纳或者我提个 pr

现在就剩下过长域名会超出引言框这里的样式不知道该怎么调整了

image

imsyy added a commit that referenced this issue Nov 9, 2023
> 域名过长的样式还没想好怎么调整 😂
@imsyy imsyy closed this as completed Nov 13, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug 这有一只虫子
Projects
None yet
Development

No branches or pull requests

3 participants