Web/03-CSS进阶/CSS开发积累.md
2020-10-13 10:01:12 +08:00

133 lines
2.8 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

### 让flex盒子中的子元素们居中
flex布局常用的三行代码
```
display: flex;
justify-content: center; // 子元素在横轴的对齐方式 (左右居中)
align-items: center; // 子元素在竖轴的对齐方式(上下居中)
```
### 让文字只显示一行超出显示省略号
```
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
```
### 让文字最多只显示两行超出后显示省略号
```
overflow:hidden;
text-overflow:ellipsis;
display:-webkit-box;
-webkit-box-orient:vertical;
-webkit-line-clamp:2;
```
参考链接<https://blog.csdn.net/NN_nan/article/details/55045562>
### 问题描述文本内容里自带了换行但是在前端没有展示出来
解决办法增加如下属性即可
```
white-space: pre-wrap;
```
或者
```
white-space: pre-line;
```
### 2019-11-12-CSS的逗号和空格
CSS的逗号一般写在()**不同属性值之间用的是空格**不是逗号比如
```css
transform: translate(-50%, -50%); /* 这种写逗号 */
transform: translate(-50%, -50%) scale(0.5); /* 不同属性值之间,用的是空格 */
background-size: 100% 100%; /* 这里是空格,不是逗号 */
```
### 2019-11-01
价格中的羊角符号有半角和全角之分
- ¥半角
- 全角
可以看出半角的宽度更小考虑到容器的空间一般比较紧张所以推荐使用**半角**
### 2019-11-19-鼠标悬停时弹出提示文字
参考链接[css实现鼠标悬浮后的提示效果](https://www.cnblogs.com/zhaojian-08/p/10074660.html)
### 2019-11-27-图片的宽度固定高度自适应
这个场景下别用background直接放img元素就好了将图片的高度设置为`auto`
### 2020-03-26-通过CSS扩大点击热区
```css
.button {
position: relative;
/* [其余样式] */
}
.button::before {
content: '';
position: absolute;
top: -10px;
right: -10px;
bottom: -10px;
left: -10px;
}
```
注意button 里面不要写 `overflow: hidden` 属性否则扩大的热区无效
参考链接<https://www.jianshu.com/p/b83fc87cb222>
### 2020-10-09-上下滚动不显示滚动条
```css
.sku_list {
margin-left: 25rpx;
display: flex;
flex-wrap: wrap;
height: 617rpx;
overflow: hidden;
overflow-y: scroll;
/* 去掉滚动条 */
&::-webkit-scrollbar {
display: none;
}
}
```
注意去掉滚动条的那行代码里建议用`display: none;`不要用`width: 0;`因为当你需要设置横向滚动的效果时`display: none;`这个属性的效果更好不会改变容易的size`width: 0;`可能会改变容易的size
参考链接
- [html设置局部区域上下滚动不显示滚动条](https://blog.csdn.net/weixin_42157001/article/details/90176510)