您好,我有一个 ec2 服务器,这是配置:
DNS 公共 (IPv4):ec2-18-191-6-130.us-east-2.compute.amazonaws.com
ID d'AMI : ubuntu/images/hvm-ssd/ubuntu-bionic-18.04-amd64-server-20200611 (ami-0a63f96e85105c6d3)
当我尝试安装谷歌浏览器以无头使用它时,我遇到了这个问题:
cat: relocation error: /opt/google/chrome/lib/libc.so.6: symbol _dl_starting_up version GLIBC_PRIVATE not defined in file ld-linux-x86-64.so.2 with link time reference
Run Code Online (Sandbox Code Playgroud)
我表示我按照这个简单的教程在我的 ec2 服务器上安装 chrome:https ://understandingdata.com/install-google-chrome-selenium-ec2-aws/
您好,我在 HTML/CSS 中有一个非常简单的代码,我只想将名为 header1 的第一个块粘贴为蓝色,将 header2 粘贴为红色。我希望这两个块之间没有空白。
这是代码:
/* style22.css */
/* Définition des caractéristiques globales */
body {
background-color: #FFF;
font-weight: 400;
}
a {
text-decoration: none;
/ color: #FFF;
}
/* Header */
#conteneur {
display: flex;
flex-direction: column;
justify-content: center;
}
.header1 {
background: blue;
}
/* Navigation */
nav ul {
list-style-type: none;
display: flex;
background: red;
}Run Code Online (Sandbox Code Playgroud)
<header id="conteneur">
<div class="header1">
<div><a href="how.html"><span class="logo">ALGOBETTER</span></a></div>
</div>
<nav class="header2">
<ul>
<li><a href="gold_rules.html">Règles d'or</a></li>
<li><a href="pronos.html">Pronostics</a></li>
</ul>
</nav> …Run Code Online (Sandbox Code Playgroud)