- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在materializecss方面遇到了问题:我无法创建像Google Keep一样显示它们的卡片流:每张卡片只占据所需的位置,并且它们像“拼图”一样彼此相邻放置。我一整天都在努力,但没有取得任何进展。现在的流程如下所示:
我希望布局看起来像这样:
我正在使用 Laravel 5.3 开发该应用程序。我的代码如下所示:
index.blade.php:
@extends('layouts.standalone_module', ['brand_logo' => $page->page_title])
@section('mod_title')
{{ $page->page_title }}
@endsection
@section('mod_breadcrumbs')
<a href="{{ $base_slug }}" class="breadcrumb">{{ \App\Toolbox::string_truncate($page->page_title, 25) }}</a>
@endsection
@section('mod_main')
<div class="col s10 offset-s1 card-panel white-text teal z-depth-2 hoverable center row">
<h3 class="col s12">{{ $page->page_title }}</h3>
<div class="col s12 row white divider" style="height: 2px;"></div>
<h5 class="col s12">{{ $page->page_header }}</h5>
</div>
@include('hydrogen::partials/list', ['atoms' => $atoms])
@endsection
list.blade.php:
@php
$ct = 0;
@endphp
@foreach ($atoms as $key => $atom)
@php
$ct++
@endphp
<div class="container col s6 row">
<div class="card hoverable z-depth-2 center">
@if($atom->hasImage)
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" src="{{ $atom->image }}">
</div>
<div class="card-reveal">
<span class="card-title col s12"><span class="left">{{ $atom->title }}</span><i class="material-icons teal-text right">close</i><a href="{{ $base_slug }}/atom/{{ $atom->id }}"><i class="material-icons right">open_in_new</i></a></span>
<div class="divider teal col s12" style="margin-top: 5px; margin-bottom: 10px;"></div>
{!! $atom->description !!}
</div>
@else
<div class="card-title">
<div class="col s12" style="height: 15px;"></div>
<div class="col s10">
<p class="truncate left">
{{ $atom->title }}
</p>
</div>
<div class="col s2">
<a href="{{ $base_slug }}/atom/{{ $atom->id }}"><i class="material-icons teal-text">open_in_new</i></a>
</div>
</div>
@endif
<div class="card-content">
@if($atom->hasImage)
<span class="card-title activator" style="text-align: left;">
{{ $atom->title }}
<i class="material-icons right">more_vert</i>
</span>
<p class="teal-text" id="artificial-link" style="text-align: left;" onclick="window.location.href='{{ $base_slug }}/atom/{{ $atom->id }}'">{{ trans("hydrogen::hydrogen.atom_card_link_read") }}</p>
<style>
#artificial-link:hover{
cursor: pointer;
}
</style>
@else
<div class="divider teal col s12" style="margin-top: 5px; margin-bottom: 10px;"></div>
{!! $atom->description !!}
@endif
</div>
</div>
</div>
@endforeach
@if ($ct == 0)
@include('partials/error', ['error' => trans("hydrogen::messages.err_no_atoms")])
@endif
使用materializecss@0.98.0谁能帮我吗?
最佳答案
您好,目前您正在将所有 div 插入单父级中,您需要使用两个 50% 宽度的父级 div,并将内容放入这些 div 中,如下所示。更改 Blade.php 中的 foreach 循环以使其相应地工作。如果需要,您可以在 foreach 循环中使用标志
<div class="col-s6">
div1
div2
div3…
</div>
<div class="col-s6">
div4
div5
div6…
</div>
关于javascript - 物化CSS : Card Flow,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41922459/
我正在尝试实现 kotlin stateflow,但不知道它不起作用的原因。 当前输出: 验证34567 预期输出: 验证 34567 验证失败 package stateflowDuplicate
最近我发现了一个我无法理解的流行为。 问题描述 考虑这种情况:你有一个父 flow 并且在它的 collect 中,你将有一个“子”flow 并调用 .collect(),像这样: parentFlo
我想通过 UML2 事件图为以下事件建模: 执行操作 1。此操作产生两个输出参数: Object1和对象 2。 执行操作 2。此操作需要 Object2 作为输入参数。它不需要 Object1 作为输
在 Vaadin 8 中,您可以在 Tab(属于 TabSheet)上设置一个图标: tab#setIcon(...) 在 Vaadin Flow(目前使用 14.1)中,我不知道如何在 Tab(属于
有什么办法可以做到这一点吗?如果存储库仅在 .git/config 中包含 git-flow 指令(如 ),则该存储库是否被视为已初始化 .... [gitflow "branch"] mas
the 2nd collecting below does not collect until I remove the first one. also read from [Manuel Vi
在官方示例中,他们总是有 /* @flow */在页面顶部。现在这对现有项目来说很好,很有帮助,我想选择加入每个文件的流程。从头开始构建一个新项目我只想在任何地方进行流类型检查,而不必输入 /* @f
Vaadin 突然停止构建我的库并出现以下错误。我已经跳了 Vaadin 舞(还有很多其他的东西),但我现在没主意了。我尝试为生产构建库(但对于开发也失败了)。 我正在使用 Vaadin Flow。
我注意到很多人和例子都使用 Flows 作为 List<> 的包装器,例如像这样: @Query("SELECT * from some_model ORDER BY some_field") fun
Vaadin 突然停止构建我的库并出现以下错误。我已经跳了 Vaadin 舞(还有很多其他的东西),但我现在没主意了。我尝试为生产构建库(但对于开发也失败了)。 我正在使用 Vaadin Flow。
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 3 年前。 Improv
git flow init后,如何删除git flow模型? 如何从 .git/config 文件中删除所有相关配置? $ git flow init # force reset $ git flow
我运行了 git init 并在选择第一个分支时犯了一个错误。现在我想重新运行它来更改设置,但它再也不会问第一个问题。 Which branch should be used for bringing
我刚刚开始一份新工作,他们的代码管理一团乱。通常情况下这没什么问题,我可以应付,但在这个地方,情况就糟糕得离谱了。 他们使用 TFS...对此我无能为力。没有机会介绍 git,但我一直在阅读有关 gi
我的应用程序有更新问题。我不太明白 subview 之间的数据流是怎么回事。 这是我目前的结构 ViewModel:ObsebsrvableObject MainView 与 ObservedObje
为什么“flow check-contents”需要使用 < 将文件重定向到其中,而“flow suggest”则不需要?看起来 check-contents 应该假设命令行参数是要检查的文件路径。
最近我在 Git 中发现了工作流的三个概念: GitFlow GitHub 流程 GitLab 流程 我读过 the nice articles关于它,但我不太了解 GitLab Flow。 简单地说
我们刚刚改用 Hg Flow,但我们还没有弄清楚的一件事是如何最好地使用 Jenkins。理想情况下,我们将有一个构建和测试开发的作业,一个构建和测试默认作业和其他作业,这些作业在创建功能或发布分支时
将 Vaadin 12 与 FormLayout 一起使用和标签左侧的输入字段。 我想设置标签列的宽度。如何使用 Java API 实现这一点? 最佳答案 用于设置个人 FormItem标签宽度和/或
我正在使用 React-Flow 来可视化 React 中组件的树状层次结构。每当您在 React-Flow 中创建自定义节点时,您都可以像这样在树中使用它: ,我就可以做到这一点。 .有没有
我是一名优秀的程序员,十分优秀!