css 字体好看的颜色加样式搭配
时间: 2023-08-04 18:13:01 浏览: 157
好看的css样式
以下是一些在网页设计中常用的字体、颜色和样式搭配:
1. Roboto字体 + #333333颜色 + 加粗样式
```css
font-family: 'Roboto', sans-serif;
color: #333333;
font-weight: bold;
```
2. Open Sans字体 + #666666颜色 + 斜体样式
```css
font-family: 'Open Sans', sans-serif;
color: #666666;
font-style: italic;
```
3. Lato字体 + #990000颜色 + 下划线样式
```css
font-family: 'Lato', sans-serif;
color: #990000;
text-decoration: underline;
```
4. Montserrat字体 + #006699颜色 + 大小写转换样式
```css
font-family: 'Montserrat', sans-serif;
color: #006699;
text-transform: uppercase;
```
5. Poppins字体 + #009933颜色 + 阴影样式
```css
font-family: 'Poppins', sans-serif;
color: #009933;
text-shadow: 2px 2px 2px rgba(0,0,0,0.4);
```
注意:以上只是一些常见的搭配,实际上还有很多其他的组合可以尝试。另外,字体的选择也应该考虑到网站的整体风格和主题。
阅读全文