The header and footer in the tweet embed example have child items that could be arranged as rows using the flex-direction property.

This tells CSS to align the children horizontally.


Add the CSS property flex-direction to both the header and footer and set the value to row.


<style>
body {
font-family: Arial, sans-serif;
}
header {
display: flex;
flex-direction: row;
}
header .profile-thumbnail {
width: 50px;
height: 50px;
border-radius: 4px;
}
header .profile-name {
display: flex;
margin-left: 10px;
}
header .follow-btn {
display: flex;
margin: 0 0 0 auto;
}
header .follow-btn button {
border: 0;
border-radius: 3px;
padding: 5px;
}
header h3, header h4 {
display: flex;
margin: 0;
}
#inner p {
margin-bottom: 10px;
font-size: 20px;
}
#inner hr {
margin: 20px 0;
border-style: solid;
opacity: 0.1;
}
footer {
display: flex;
flex-direction: row;
}
footer .stats {
display: flex;
font-size: 15px;
}
footer .stats strong {
font-size: 18px;
}
footer .stats .likes {
margin-left: 10px;
}
footer .cta {
margin-left: auto;
}
footer .cta button {
border: 0;
background: transparent;
}
</style>
<header>
<img src="https://freecodecamp.s3.amazonaws.com/quincy-twitter-photo.jpg" alt="Quincy Larson's profile picture" class="profile-thumbnail">
<div class="profile-name">
<h3>Quincy Larson</h3>
<h4>@ossia</h4>
</div>
<div class="follow-btn">
<button>Follow</button>
</div>
</header>
<div id="inner">
<p>I meet so many people who are in search of that one trick that will help them work smart. Even if you work smart, you still have to work hard.</p>
<span class="date">1:32 PM - 12 Jan 2018</span>
<hr>
</div>
<footer>
<div class="stats">
<div class="Retweets">
<strong>107</strong> Retweets
</div>
<div class="likes">
<strong>431</strong> Likes
</div>
</div>
<div class="cta">
<button class="share-btn">Share</button>
<button class="retweet-btn">Retweet</button>
<button class="like-btn">Like</button>
</div>
</footer>

最新文章

  1. ASP.NET CORE配置信息
  2. .NET 串口通信中断接收,包含0X1A(作为EOF)
  3. linux下目录操作
  4. 连上VPN后,如何访问内网(添加路由表实现网络分流方法)
  5. 在wpf窗体上添加用户控件
  6. ffmpeg 打开视频流太慢(下)
  7. QueryRunner的使用
  8. ASP.NET菜鸟之路之登录系统
  9. 谈谈托管代码、IL、CLR、ISAPI?
  10. elk 添加节点
  11. 第四章:大数据 の HBase 基础
  12. ds4700更换控制器导致磁盘无法识别-处理方法
  13. linux 最大文件描述符
  14. 利用window.performance.timing进行性能分析
  15. pysphere VMware控制模块的一些函数的说明
  16. HTML语言
  17. 入门智能家居,从 IFTTT 到 HomeKit 自动化(二)
  18. js中的坑
  19. OpenGL12-shader(GLSL)着色语言3-(属性参数)(代码已上传)
  20. php中static静态变量的使用方法详解

热门文章

  1. 深入比特币原理(四)——锁定脚本(locking script)与解锁脚本(unlocking script)
  2. Java基础面试相关
  3. iOS开发笔试面试- KVC/KVO简单使用
  4. leaflet 结合 geoserver 实现地图空间查询(附源码下载)
  5. BZOJ[HNOI2005]狡猾的商人(差分约束)
  6. springboot使用api操作HBase之shell
  7. JS内置对象-Array之常用API
  8. swoole运行模式加速laravel应用的详细介绍
  9. C# 中的 bool、char 和 string 类型
  10. 深入理解 Spring Cloud 核心组件与底层原理