flex侧边栏布局,侧边插入网址然后网页内容显示在ifram窗口内,但是只是简单的插入,所以当点击的时候跳转的链接就会进入新的页面,因为新的地址中并没有target属性。flex两个属性,快速垂直居中。:justify-conteng:center, align-content:center;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style >
body{
background-color: skyblue;
display: flex;
flex-direction:column;
}
.topbar {
height: 50px;
width: 100%;
background-color: rgb(39, 7, 114);
display: flex;
flex-direction: column;
justify-content: space-around;
}
.sorce {<