- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我关注了 http://www.undefinednull.com/2013/10/15/octopress-blog-tweaks-adding-author-information-section-below-each-posts/
并且很奇怪部分是他的 CSS 代码可以工作并 float 对齐图片旁边的文本。
在我的例子中,我得到如下所示:
如您所见,文本的方向不正确,因为原始源代码似乎堆积如山。我投入了大量资金并在 Github 上看到了他的 CSS 存储库,它是 https://github.com/shidhincr/shidhincr.github.com/blob/source/source/_includes/custom/aboutauthor。 html
使用 https://github.com/shidhincr/shidhincr.github.com/blob/source/sass/custom/_styles.scss
中的 CSS。
我得到了精确布局的模仿版本,但无法缩进图像旁边的文本,如下所示:
我已经尝试了所有这些,这是我正在使用的完整 scss 源:
布局为 .html
<div class="about">
<span class="about-image">
<img alt="shritam" src="/images/author.jpg">
</span>
<span class="about-desc">
<span style="float:right;">
<em>Hello. Welcome to pwntoken. I am an Information Security Analyst cum Penetration Tester. I do Application Security and here's my <a target="_blank" href="https://www.linkedin.com/in/shritambhowmick"> LinkedIn </a> for a professional touch. Feel free to discuss about the post content and you can send me feedbacks, if any, at:</em> <a href="mailto:shritam.bhowmick@gmail.com" style="text-decoration:none;"> <img style="border:none" alt="shritam_email" src="/images/email.png"></a>
</span>
<br/>
<hr/>
<a href="https://twitter.com/pwntoken" class="twitter-follow-button" data-show-count="false" data-size="large">Follow @pwntoken</a>
</span>
</div>
我正在使用的原始源 CSS _styles.scss
这是 Octopress 中用于处理所有 CSS 内容的预处理器:
// This File is imported last, and will override other styles in the cascade
// Add styles here to make changes without digging in too much
#content table:not(.highlight table) {
border: 1px solid #e7e3e7;
margin-bottom: 1.5em; // to match p style
th, td {
border: 1px dashed #e7e3e7;
padding: 0 5px;
}
th {
border-style: solid;
font-weight: bold;
background: url("/images/noise.png") repeat scroll left top #f7f3f7;
}
th[align="left"], td[align="left"] {
text-align: left;
}
th[align="right"], td[align="right"] {
text-align: right;
}
th[align="center"], td[align="center"] {
text-align: center;
}
}
body > footer {
@include shadow-box(none,0 15px 15px #333,0.3);
margin-bottom: 10px;
}
.about {
font-style: italic;
background-color: #FFF;
padding: 10px;
border: #e2edf2 2px dashed;
background-color: #f4f8fa;
overflow: hidden;
clear: both;
.about-image {
width: 150px;
float: left;
display: inline-flexbox;
margin-right: 20px;
img {
border-radius: 50%;
}
}
.about-desc > hr {
border: none;
border-top: 1px solid #fff;
padding-top: 10px;
box-shadow: 0 -1px 0 #CBCED1;
float: right;
}
#twitter-widget-1 {
float: right
}
&.sidebar {
border: none;
background-color: transparent;
box-shadow: none;
text-align: center;
.about-image,#twitter-widget-1 {
float: none;
}
.about-desc {
display: block;
a {
color: rgb(47, 99, 211);
}
}
.about-image {
img {
border-radius: 50%;
box-shadow: 0px 0px 0px 10px rgba(221, 214, 214, 0.2);
border: 10px solid rgba(151, 151, 151, 0.2);
}
}
@media only screen and (max-width: 768px) {
display: none;
}
}
}
.blog-index + aside.sidebar {
.about.sidebar {
@media only screen and (max-width: 768px) {
display: block;
}
}
}
li.related {
padding-bottom: 10px;
a {
color: #F55A0A;
font-size: 22px;
}
a:hover {
border-bottom: 2px dashed #F9A67B;
}
}
我不是 CSS 专家,我想知道我该如何解决这个问题?
最佳答案
在
<span class="about-desc">
<span style="float:right;">
删除内联样式style="float:right;"
。
关于css - 修复 Octopress 上的 CSS。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31899662/
我看到一些 Octopress 网站的代码块中没有行号。你是怎样做的? {% codeblock %} 中有一些属性吗?标签?还是我必须修改代码块插件源? 最佳答案 通过 4 个空格缩进使用 bloc
我在我的博客中使用 Octopress,需要创建一个链接来下载文本文件。 有一个名为 include_code 的内置插件可以呈现链接但也显示文件。我只想要链接。有谁知道我怎么能做到这一点? 最佳答案
Octopress 提供了一种使用 rake new_post[title] 命令创建博客文章的简单方法。有没有办法 rename 或 delete 命令创建的帖子? 最佳答案 您可以重命名 或删除
我在 tutorial 下创建了许多页面文件夹。 those pages are tutorial/ruby tutorial/python tutorial/c 但是,我只能在我的 Octopres
Hiding asides in Ocotopress似乎表明如何在站点范围内执行此操作,但我希望只能让特定页面折叠侧边栏。 最佳答案 要在整个站点范围内折叠侧边栏,您可以添加 sidebar:col
我在 GitHub Pages 中安装了 Octopress。 我克隆了存储库。 $ git clone git@github.com:my-name/my-name.github.io.git$ g
我需要做什么才能使语法突出显示在 octopress 上工作?这是我目前拥有的: ``` ruby class Fixnum def prime? ('1' * self) !~ /
在 superuser.com 上问过这个问题,不确定 stackoverflow 是否更适合它,但我还没有得到任何答案: === 我正尝试在我的 octopress 设置中生成一个新的博客条目,但我
我尝试做这样的事情Octopress code block 但我无法让它发挥作用。 总是显示以下错误。我的机器是 Windows 7。 $ rake generate ## Generating Si
我正在使用 Octopress,我想更改我的样式表。它在一个名为“斜线”的主题中 我打字 rake watch 然后去.themes/mytheme/sass/parts/_syntax.scss 修
我使用 Octopress (jekyll) 作为博客引擎/生成器。当我在 中包含一段代码时 {% include_code foo.bar %} 语法,它完全崩溃了。如果我使用其他语法在标记内编写代
我创建了一个 Octopress 博客。我的博客页面一个接一个地包含我所有的帖子,我想更改它。 我看到了这些页面:http://linuxmoz.com/ , http://codingpraxis.
我是 octopress 的新手,所以我会遇到一些问题。一开始,我克隆了 octopress 存储库,并创建了一个名为 OctoBlog 的存储库,然后我 rake setup_github_page
我最近更换了计算机,并且不小心删除了所有源(Markdown 文件等)的本地版本。不管我怎么想,这一切都在 Github(我使用 GitHub 页面)中,所以我可以从那里开始。但是,我已经进入 Git
今天我更新了我的 Octopress 博客,当我运行时: rake new_post["This is a test of title"] 它在 source/_post/2013-02-18-thi
在一些 Markdown 文档中,他们说换行符是一个新行,两个换行符被解释为一个新段落。 但在 Octopress 中,一个换行符不执行任何操作,而两个换行符则构成一个新段落。我怎样才能在其 Mark
我使用 octopress 创建了一个博客,我创建了一个虚拟链接而不是页面,并通过编辑导航栏将其指向某些类别的帖子: Blog Archives About Python101 最
这真是令人沮丧。我不知道我的 markdown 文件有什么问题,因为它之前编译成 html 没有任何问题,但现在每当我运行 rake generate 时它都会给我这个错误。现在我主要对每个文件(30
我进退两难:我已经做了rake deploy我的 Octopress 博客运行良好。文档说我必须再做 3 个步骤: git add . git commit -m 'message' git push
我需要为 Octopress 中所有带有“旧”标签的帖子设置不同的样式。比如,在文件中只显示标题而不显示图像,并将它们分开!我怎样才能做到这一点? (注意:有近 1,500 个帖子带有旧标签) 最佳答
我是一名优秀的程序员,十分优秀!