我应该如何将此对象从.PSD转换为HTML / CSS?

时间:2016-12-16 11:59:05

标签: html css psd

The object

如果可能的话,我应该从纯CSS制作这个对象,还是将它作为div的背景图像?

它超出了主要内容区域,因此我不确定如何实现它。我想我应该使用div的绝对定位?

2 个答案:

答案 0 :(得分:6)

使用border

仅限CSS 解决方案:



.block {
  background-color: #f3f3f3;
  color: #909090;
  font-family: Arial, sans-serif;
  margin: 0 auto;
  padding: 20px 20px 10px;
  width: 300px;
}
.block h2 {
  background-color: #a9c4c6;
  color: white;
  font-family: Roboto Slab, serif;
  font-weight: normal;
  position: relative;
  left: -29px;
  margin: 0;
  position: relative;
  text-indent: 29px;
  text-transform: uppercase;
}
.block h2:before {
  content: "";
  display: block;
  position: absolute;
  top: -8px;
  left: 0;
  border-width: 4px 5px;
  border-color: #84a0a2;
  border-style: solid;
  border-top-color: transparent;
  border-left-color: transparent;
  width: 0;
  height: 0;
}

<link href="https://fonts.googleapis.com/css?family=Roboto+Slab" rel="stylesheet">
<section class="block">
  <h2>Furniture</h2>
  <p>Should I make this object from pure CSS if it is possible or us it as a background image for a div?</p>

  <p>It goes outside of main content area so I am not sure how to implement it. I guess I should use absolute positioning for the div?</p>
</section>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

我们必须使用CSS边界,我们得到相同的....

要获得更多内容,您必须像本文一样阅读如何使用css形状https://css-tricks.com/examples/ShapesOfCSS/

&#13;
&#13;
.main{
padding:20px;
}
.test {
  font-size: 15px;
  background: #ccc;
  padding:10px
  
  
}
h2
{
	position: relative;
	width: 50%;
	font-size: 1.5em;
	font-weight: bold;
	padding: 6px 20px 6px 70px;
	color: #555;
	background-color: #AECACC;
	text-shadow: 0px 1px 2px #bbb;
	-webkit-box-shadow: 0px 2px 4px #888;
	-moz-box-shadow: 0px 2px 4px #888;
	box-shadow: 0px 2px 4px #888;
  left:-20px;
}

h2:after
{
	content: ' ';
	position: absolute;
  /*EDIT border WIDTH as you want fold tringle with css */
	border-bottom: 10px solid #8BA8AA; 
    border-left: 10px solid transparent;
    height: 0;
    width: 0;
    left: 0px;
  /*EDIT TOP as border width */
	top: -10px;
  
}
&#13;
<div class="main">
<div class="test">
<h2>HEADING HERE</h2>
</div>

</div>
&#13;
&#13;
&#13;