如何将文本混合并通过flexbox正确链接在一起?

时间:2020-06-03 10:54:05

标签: html css

这是我的代码:

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<style>
body {

}
div,span,a{
display:flex;
flex-direction: row;
}
</style>
</head>
<body>

<div><span>Here is the official site of google:</span><a href="www.google.com">www.google.com</a><span>. You can search many things via the search engine of it.Google LLC is an American multinational technology company that specializes in Internet-related services and products, which include online advertising technologies, a search engine, cloud computing, software, and hardware.</span></div>
</body>
</html>

嗯,事实证明是这样的: enter image description here

我希望它们很好地混合在一起,就像这样: enter image description here

我该如何实现?谢谢。

0 个答案:

没有答案