文字对齐(Text Alignment)
优质
小牛编辑
127浏览
2023-12-01
描述 (Description)
可以通过添加.text-left, .text-right, .text-center或.textjustify类来对齐元素的文本。 通过在文本对齐类的前面放置断点,将使对齐仅应用于该屏幕大小或更大的屏幕大小。 例如, .medium-textcenter将在最小屏幕上将文本对齐到左侧,但在屏幕大小为中等和更大时更改为中心。
例子 (Example)
以下示例演示了在Foundation中使用text alignment 。
<html>
<head>
<title>Text Alignment</title>
<link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/css/foundation.css">
</head>
<body>
<p class = "text-left">Foundation is one of the advanced front-end framework
for designing beautiful responsive websites. It works on all types of
devices and provides you with HTML, CSS and JavaScript plugins.
</p>
<p class = "text-right">Foundation is one of the advanced front-end
framework for designing beautiful responsive websites. It works on all
types of devices and provides you with HTML, CSS and JavaScript plugins.
</p>
<p class = "text-center">Foundation is one of the advanced front-end
framework for designing beautiful responsive websites. It works on all
types of devices and provides you with HTML, CSS and JavaScript plugins.
</p>
<p class = "text-justify">Foundation is one of the advanced front-end
framework for designing beautiful responsive websites. It works on all
types of devices and provides you with HTML, CSS and JavaScript plugins.
</p>
<p class = "medium-text-center">Foundation is one of the advanced front-end
framework for designing beautiful responsive websites. It works on all
types of devices and provides you with HTML, CSS and JavaScript plugins.
</p>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/js/vendor/jquery.min.js"></script>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/js/foundation.min.js"></script>
<script>
$(document).ready(function() {
$(document).foundation();
})
</script>
</body>
</html>